public enum Operator extends Enum<Operator>
| Enum Constant and Description |
|---|
EQUAL |
GREATER_EQUAL |
GREATER_EQUAL_AND_LESS_EQUAL |
GREATER_THAN |
GREATER_THAN_AND_LESS_THAN |
LESS_EQUAL |
LESS_THAN |
NA |
NOT_EQUAL |
| Modifier and Type | Method and Description |
|---|---|
static Operator |
flipOperator(Operator op) |
static String |
flipOperator(String operatorStr) |
static Operator |
getOperatorFromString(String operatorStr) |
static String |
getStringFromOperator(Operator op) |
static Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Operator NA
public static final Operator EQUAL
public static final Operator NOT_EQUAL
public static final Operator GREATER_THAN
public static final Operator GREATER_EQUAL
public static final Operator LESS_THAN
public static final Operator LESS_EQUAL
public static final Operator GREATER_THAN_AND_LESS_THAN
public static final Operator GREATER_EQUAL_AND_LESS_EQUAL
public static Operator[] values()
for (Operator c : Operator.values()) System.out.println(c);
public static Operator valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullCopyright © 2014. All Rights Reserved.