@ThriftEnum public enum IsolationLevel extends Enum<IsolationLevel>
| Enum Constant and Description |
|---|
READ_COMMITTED |
READ_UNCOMMITTED |
REPEATABLE_READ |
SERIALIZABLE |
| Modifier and Type | Method and Description |
|---|---|
static void |
checkConnectorSupports(IsolationLevel supportedLevel,
IsolationLevel requestedLevel) |
int |
getValue() |
boolean |
meetsRequirementOf(IsolationLevel requirement) |
String |
toString() |
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 SERIALIZABLE
public static final IsolationLevel REPEATABLE_READ
public static final IsolationLevel READ_COMMITTED
public static final IsolationLevel READ_UNCOMMITTED
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 boolean meetsRequirementOf(IsolationLevel requirement)
@ThriftEnumValue public int getValue()
public String toString()
toString in class Enum<IsolationLevel>public static void checkConnectorSupports(IsolationLevel supportedLevel, IsolationLevel requestedLevel)
Copyright © 2012–2022. All rights reserved.