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