Enum Constant and Description |
---|
After |
Before |
Between |
Contains |
Equals |
Greater |
GreaterOrEquals |
NotEquals |
On |
Smaller |
SmallerOrEquals |
StartsWtih |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getOperator()
Gets the string value for the operator.
|
static Operator |
lookup(java.lang.String operator)
Looks up the enum for the given operator string value.
|
static Operator |
valueOf(java.lang.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 Before
public static final Operator After
public static final Operator Between
public static final Operator On
public static final Operator Equals
public static final Operator NotEquals
public static final Operator Contains
public static final Operator StartsWtih
public static final Operator Greater
public static final Operator Smaller
public static final Operator GreaterOrEquals
public static final Operator SmallerOrEquals
public static Operator[] values()
for (Operator c : Operator.values()) System.out.println(c);
public static 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()