public static enum Condition.Operator extends java.lang.Enum<Condition.Operator>
Enum Constant and Description |
---|
EqualTo |
GreaterThan |
GreaterThanOrEqual |
LessThan |
LessThanOrEqual |
NotEqualTo |
Modifier and Type | Method and Description |
---|---|
static Condition.Operator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Condition.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Condition.Operator EqualTo
public static final Condition.Operator NotEqualTo
public static final Condition.Operator GreaterThan
public static final Condition.Operator GreaterThanOrEqual
public static final Condition.Operator LessThan
public static final Condition.Operator LessThanOrEqual
public static Condition.Operator[] values()
for (Condition.Operator c : Condition.Operator.values()) System.out.println(c);
public static Condition.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 null