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