public static enum StringCondition.Mode extends Enum<StringCondition.Mode>
| Enum Constant and Description |
|---|
CONTAINS
Elements that contain the specified value are selected by the
condition.
|
ENDS_WITH
Elements that ends with the specified value are selected by the
condition.
|
EQUAL
Elements that are equal to the specified value are selected by the
condition.
|
STARTS_WITH
Elements that start with the specified value are selected by the
condition.
|
UNEQUAL
Elements that are not equal to the specified value are selected by
the condition.
|
| Modifier and Type | Method and Description |
|---|---|
static StringCondition.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StringCondition.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StringCondition.Mode EQUAL
public static final StringCondition.Mode UNEQUAL
public static final StringCondition.Mode STARTS_WITH
public static final StringCondition.Mode CONTAINS
public static final StringCondition.Mode ENDS_WITH
public static StringCondition.Mode[] values()
for (StringCondition.Mode c : StringCondition.Mode.values()) System.out.println(c);
public static StringCondition.Mode 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.