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