public enum JtxIsolationLevel extends java.lang.Enum<JtxIsolationLevel>
Enum Constant and Description |
---|
ISOLATION_DEFAULT |
ISOLATION_NONE |
ISOLATION_READ_COMMITTED |
ISOLATION_READ_UNCOMMITTED |
ISOLATION_REPEATABLE_READ |
ISOLATION_SERIALIZABLE |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
int |
value() |
static JtxIsolationLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JtxIsolationLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JtxIsolationLevel ISOLATION_DEFAULT
public static final JtxIsolationLevel ISOLATION_NONE
public static final JtxIsolationLevel ISOLATION_READ_UNCOMMITTED
public static final JtxIsolationLevel ISOLATION_READ_COMMITTED
public static final JtxIsolationLevel ISOLATION_REPEATABLE_READ
public static final JtxIsolationLevel ISOLATION_SERIALIZABLE
public static JtxIsolationLevel[] values()
for (JtxIsolationLevel c : JtxIsolationLevel.values()) System.out.println(c);
public static JtxIsolationLevel valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic int value()
public java.lang.String toString()
toString
in class java.lang.Enum<JtxIsolationLevel>
Copyright © 2003-present Jodd Team