public static enum QueryExecutor.Holdability extends Enum<QueryExecutor.Holdability>
| Enum Constant and Description |
|---|
CloseCursorsAtCommit |
HoldCursorOverCommit |
| Modifier and Type | Method and Description |
|---|---|
static QueryExecutor.Holdability |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryExecutor.Holdability[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryExecutor.Holdability HoldCursorOverCommit
public static final QueryExecutor.Holdability CloseCursorsAtCommit
public static QueryExecutor.Holdability[] values()
for (QueryExecutor.Holdability c : QueryExecutor.Holdability.values()) System.out.println(c);
public static QueryExecutor.Holdability 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 © 2018. All rights reserved.