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