public static enum QueryExecutor.ResultSetType extends Enum<QueryExecutor.ResultSetType>
| Enum Constant and Description |
|---|
ForwardOnly
Выборка только вперед
|
ScrollInsensitive
Выборка может вперед и назад, но не чувствитеьлная к изменениям в ResultSet
|
ScrollSensitive
Выборка может вперед и назад, чувствитеьлная к изменениям в ResultSet
|
| Modifier and Type | Method and Description |
|---|---|
static QueryExecutor.ResultSetType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryExecutor.ResultSetType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryExecutor.ResultSetType ForwardOnly
public static final QueryExecutor.ResultSetType ScrollInsensitive
public static final QueryExecutor.ResultSetType ScrollSensitive
public static QueryExecutor.ResultSetType[] values()
for (QueryExecutor.ResultSetType c : QueryExecutor.ResultSetType.values()) System.out.println(c);
public static QueryExecutor.ResultSetType 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 © 2019. All rights reserved.