public static enum IterableInput.Status extends java.lang.Enum<IterableInput.Status>
| Enum Constant and Description |
|---|
CLOSED
This status indicates that the IterableInput has been closed or has
never been opened.
|
END_OF_INPUT
This status indicates that the IterableInput has reached the end of
the available data, or run into an error during fetches.
|
FETCHING
This status indicates that the IterableInput is in the midst of a
fetch pass.
|
OPENED
This status indicates that the IterableInput has been opened, but is
not actually engaged in a fetch pass.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static IterableInput.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IterableInput.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IterableInput.Status CLOSED
public static final IterableInput.Status OPENED
public static final IterableInput.Status FETCHING
public static final IterableInput.Status END_OF_INPUT
public static IterableInput.Status[] values()
for (IterableInput.Status c : IterableInput.Status.values()) System.out.println(c);
public static IterableInput.Status 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 nullpublic java.lang.String toString()
toString in class java.lang.Enum<IterableInput.Status>