public enum IsolationLevel extends Enum<IsolationLevel>
| Modifier and Type | Method and Description |
|---|---|
String |
getSyntax() |
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 UNSPECIFIED_ISOLATION_LEVEL
public static final IsolationLevel READ_UNCOMMITTED_ISOLATION_LEVEL
public static final IsolationLevel READ_COMMITTED_NO_SNAPSHOT_ISOLATION_LEVEL
public static final IsolationLevel READ_COMMITTED_ISOLATION_LEVEL
public static final IsolationLevel REPEATABLE_READ_ISOLATION_LEVEL
public static final IsolationLevel SNAPSHOT_ISOLATION_LEVEL
public static final IsolationLevel SERIALIZABLE_ISOLATION_LEVEL
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 nullpublic String getSyntax()
Copyright © 2015 FoundationDB, LLC. All rights reserved.