|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<RelOp>
com.amazon.carbonado.filter.RelOp
public enum RelOp
Relational operator enumeration.
| Enum Constant Summary | |
|---|---|
EQ
Equals |
|
GE
Greator than or Equal |
|
GT
Greator Than |
|
LE
Less than or Equal |
|
LT
Less Than |
|
NE
Not Equals |
|
| Method Summary | |
|---|---|
RelOp |
reverse()
|
String |
toString()
Returns one of "=", "!=", "<", ">=", ">", or "<=". |
static RelOp |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static RelOp[] |
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, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final RelOp EQ
public static final RelOp NE
public static final RelOp LT
public static final RelOp GE
public static final RelOp GT
public static final RelOp LE
| Method Detail |
|---|
public static RelOp[] values()
for (RelOp c : RelOp.values()) System.out.println(c);
public static RelOp valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is nullpublic String toString()
toString in class Enum<RelOp>public RelOp reverse()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||