public enum IsolationLevel extends Enum<IsolationLevel>
Enum Constant and Description |
---|
READ_COMMITTED
Read committed isolation level.
|
READ_UNCOMMITTED
Read uncommitted isolation level.
|
REPEATABLE_READ
Repeatable read isolation level.
|
SERIALIZABLE
Serializable isolation level.
|
Modifier and Type | Method and Description |
---|---|
static IsolationLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IsolationLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IsolationLevel READ_UNCOMMITTED
public static final IsolationLevel READ_COMMITTED
public static final IsolationLevel REPEATABLE_READ
public static final IsolationLevel SERIALIZABLE
public static IsolationLevel[] values()
for (IsolationLevel c : IsolationLevel.values()) System.out.println(c);
public static IsolationLevel 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 © 2014 Feedzai. All Rights Reserved.