public static enum Isolation.Level extends Enum<Isolation.Level>
| Enum Constant and Description |
|---|
READ_COMMITTED |
READ_UNCOMMITTED |
REPEATABLE_READ |
SERIALIZABLE |
| Modifier and Type | Method and Description |
|---|---|
String |
getText() |
static Isolation.Level |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Isolation.Level[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Isolation.Level SERIALIZABLE
public static final Isolation.Level REPEATABLE_READ
public static final Isolation.Level READ_COMMITTED
public static final Isolation.Level READ_UNCOMMITTED
public static Isolation.Level[] values()
for (Isolation.Level c : Isolation.Level.values()) System.out.println(c);
public static Isolation.Level 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 nullpublic String getText()
Copyright © 2012–2023. All rights reserved.