|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<RelationalOperator>
com.ebay.erl.mobius.core.criterion.RelationalOperator
public enum RelationalOperator
This product is licensed under the Apache License, Version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0. This product contains portions derived from Apache hadoop which is licensed under the Apache License, Version 2.0, available at http://hadoop.apache.org. © 2007 – 2012 eBay Inc., Evan Chiu, Woody Zhou, Neel Sundaresan
Enum Constant Summary | |
---|---|
EQ
equals to (==) |
|
GE
greater than or equals to (>=) |
|
GT
greater than (>) |
|
LE
less than or equals to (<=) |
|
LT
less than (<) |
|
NE
not equals to (!=) |
|
NOT_NULL
|
|
NOT_WITHIN
|
|
WITHIN
|
Method Summary | |
---|---|
static RelationalOperator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static RelationalOperator[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final RelationalOperator EQ
public static final RelationalOperator NE
public static final RelationalOperator GE
public static final RelationalOperator GT
public static final RelationalOperator LE
public static final RelationalOperator LT
public static final RelationalOperator WITHIN
public static final RelationalOperator NOT_WITHIN
public static final RelationalOperator NOT_NULL
Method Detail |
---|
public static RelationalOperator[] values()
for (RelationalOperator c : RelationalOperator.values()) System.out.println(c);
public static RelationalOperator valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |