static enum IntervalMatches.State extends java.lang.Enum<IntervalMatches.State>
Enum Constant and Description |
---|
EXHAUSTED |
ITERATING |
UNPOSITIONED |
Modifier and Type | Method and Description |
---|---|
static IntervalMatches.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IntervalMatches.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IntervalMatches.State UNPOSITIONED
public static final IntervalMatches.State ITERATING
public static final IntervalMatches.State EXHAUSTED
public static IntervalMatches.State[] values()
for (IntervalMatches.State c : IntervalMatches.State.values()) System.out.println(c);
public static IntervalMatches.State valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null