public static enum DatabasePlatform.OnQueryOnly extends Enum<DatabasePlatform.OnQueryOnly>
Enum Constant and Description |
---|
COMMIT
Commit the transaction
|
ROLLBACK
Rollback the transaction.
|
Modifier and Type | Method and Description |
---|---|
static DatabasePlatform.OnQueryOnly |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DatabasePlatform.OnQueryOnly[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DatabasePlatform.OnQueryOnly ROLLBACK
public static final DatabasePlatform.OnQueryOnly COMMIT
public static DatabasePlatform.OnQueryOnly[] values()
for (DatabasePlatform.OnQueryOnly c : DatabasePlatform.OnQueryOnly.values()) System.out.println(c);
public static DatabasePlatform.OnQueryOnly 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.