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