public enum AutoCommitMode extends java.lang.Enum<AutoCommitMode>
| Enum Constant and Description |
|---|
CLIENT_SIDE_AUTOCOMMIT_ON |
SERVER_SIDE_AUTOCOMMIT_OFF |
SERVER_SIDE_AUTOCOMMIT_ON |
| Modifier and Type | Method and Description |
|---|---|
static AutoCommitMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AutoCommitMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AutoCommitMode SERVER_SIDE_AUTOCOMMIT_ON
public static final AutoCommitMode SERVER_SIDE_AUTOCOMMIT_OFF
public static final AutoCommitMode CLIENT_SIDE_AUTOCOMMIT_ON
public static AutoCommitMode[] values()
for (AutoCommitMode c : AutoCommitMode.values()) System.out.println(c);
public static AutoCommitMode 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 null