public static enum Range.Condition extends Enum<Range.Condition>
| Enum Constant and Description |
|---|
BETWEEN |
GREATER_THEN_MIN |
UP_TO_MAX |
| Modifier and Type | Method and Description |
|---|---|
static Range.Condition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Range.Condition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Range.Condition GREATER_THEN_MIN
public static final Range.Condition UP_TO_MAX
public static final Range.Condition BETWEEN
public static Range.Condition[] values()
for (Range.Condition c : Range.Condition.values()) System.out.println(c);
public static Range.Condition 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.