public enum ORDERED_OPERATOR extends java.lang.Enum<ORDERED_OPERATOR>
Enum Constant and Description |
---|
EQUAL |
GREATER_THAN |
GREATER_THAN_OR_EQUAL |
LESS_THAN |
LESS_THAN_OR_EQUAL |
NOT_EQUAL |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getOperator() |
static ORDERED_OPERATOR |
parseString(java.lang.String str)
Returns the ORDERED_OPERATOR equivalent of the input string (ignores case)
|
static ORDERED_OPERATOR |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ORDERED_OPERATOR[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ORDERED_OPERATOR GREATER_THAN_OR_EQUAL
public static final ORDERED_OPERATOR LESS_THAN_OR_EQUAL
public static final ORDERED_OPERATOR GREATER_THAN
public static final ORDERED_OPERATOR LESS_THAN
public static final ORDERED_OPERATOR EQUAL
public static final ORDERED_OPERATOR NOT_EQUAL
public static ORDERED_OPERATOR[] values()
for (ORDERED_OPERATOR c : ORDERED_OPERATOR.values()) System.out.println(c);
public static ORDERED_OPERATOR 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 getOperator()
public static ORDERED_OPERATOR parseString(java.lang.String str)
str
-