Enum Constant and Description |
---|
EQ
Equals
|
GT
Greater than
|
GTE
Greater than or equal to
|
LT
Less than
|
LTE
Less than or equal to
|
NE
Not equals
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getSymbol() |
static Op |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Op[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Op EQ
public static final Op NE
public static final Op GT
public static final Op GTE
public static final Op LT
public static final Op LTE
public static Op[] values()
for (Op c : Op.values()) System.out.println(c);
public static Op 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 namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getSymbol()