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