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