public static enum EqualityCondition.Mode extends Enum<EqualityCondition.Mode>
| Enum Constant and Description |
|---|
EQUAL
Elements that are equal to 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 EqualityCondition.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EqualityCondition.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EqualityCondition.Mode EQUAL
public static final EqualityCondition.Mode UNEQUAL
public static EqualityCondition.Mode[] values()
for (EqualityCondition.Mode c : EqualityCondition.Mode.values()) System.out.println(c);
public static EqualityCondition.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.