protected static enum ResultSetIterator.State extends Enum<ResultSetIterator.State>
| Enum Constant and Description |
|---|
BEFORE_EXECUTE |
FINISHED
resultSet closed
|
RETURN_RESULTS
nextObject != null
|
| Modifier and Type | Method and Description |
|---|---|
static ResultSetIterator.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResultSetIterator.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResultSetIterator.State BEFORE_EXECUTE
public static final ResultSetIterator.State RETURN_RESULTS
public static final ResultSetIterator.State FINISHED
public static ResultSetIterator.State[] values()
for (ResultSetIterator.State c : ResultSetIterator.State.values()) System.out.println(c);
public static ResultSetIterator.State 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 © 2003–2018. All rights reserved.