public enum QueryHoldability extends java.lang.Enum<QueryHoldability>
Enum Constant and Description |
---|
CLOSE_CURSORS_AT_COMMIT |
DEFAULT
Default holdability.
|
HOLD_CURSORS_OVER_COMMIT |
Modifier and Type | Method and Description |
---|---|
int |
value() |
static QueryHoldability |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static QueryHoldability[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryHoldability DEFAULT
public static final QueryHoldability CLOSE_CURSORS_AT_COMMIT
public static final QueryHoldability HOLD_CURSORS_OVER_COMMIT
public static QueryHoldability[] values()
for (QueryHoldability c : QueryHoldability.values()) System.out.println(c);
public static QueryHoldability 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 int value()
Copyright © 2003-present Jodd Team