| Enum Constant and Description |
|---|
CONTAIN |
END_WITH |
EQUAL |
GREATER_THAN |
GREATER_THAN_OR_EQUAL_TO |
IN |
IS_NULL |
LESS_THAN |
LESS_THAN_OR_EQUAL_TO |
START_WITH |
| Modifier and Type | Method and Description |
|---|---|
static Condition |
fromValue(java.lang.String text) |
java.lang.String |
toString() |
static Condition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Condition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Condition CONTAIN
public static final Condition END_WITH
public static final Condition EQUAL
public static final Condition IS_NULL
public static final Condition GREATER_THAN
public static final Condition GREATER_THAN_OR_EQUAL_TO
public static final Condition IN
public static final Condition LESS_THAN
public static final Condition LESS_THAN_OR_EQUAL_TO
public static final Condition START_WITH
public static Condition[] values()
for (Condition c : Condition.values()) System.out.println(c);
public static Condition 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 toString()
toString in class java.lang.Enum<Condition>public static Condition fromValue(java.lang.String text)