public static enum ComparableCondition.Mode extends Enum<ComparableCondition.Mode>
| Enum Constant and Description |
|---|
EQUAL
Elements that are equal to the specified value are selected by the
condition.
|
GREATER_THAN
Elements that are greater than the specified value are selected by
the condition.
|
GREATER_THAN_OR_EQUAL_TO
Elements that are greater than or equal to the specified value are
selected by the condition.
|
LESS_THAN
Elements that are less than the specified value are selected by the
condition.
|
LESS_THAN_OR_EQUAL_TO
Elements that are less than or equal to the specified value are
selected by the condition.
|
| Modifier and Type | Method and Description |
|---|---|
static ComparableCondition.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComparableCondition.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComparableCondition.Mode LESS_THAN
public static final ComparableCondition.Mode LESS_THAN_OR_EQUAL_TO
public static final ComparableCondition.Mode EQUAL
public static final ComparableCondition.Mode GREATER_THAN_OR_EQUAL_TO
public static final ComparableCondition.Mode GREATER_THAN
public static ComparableCondition.Mode[] values()
for (ComparableCondition.Mode c : ComparableCondition.Mode.values()) System.out.println(c);
public static ComparableCondition.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.