public static enum LockingComponent.Isolation extends Enum<LockingComponent.Isolation>
| Enum Constant and Description | 
|---|
NONE  | 
READ_COMMITTED  | 
READ_UNCOMMITTED  | 
REPEATABLE_READ  | 
SERIALIZABLE  | 
| Modifier and Type | Method and Description | 
|---|---|
String | 
getAllowedValue()
Returns the allowed value for the management model. 
 | 
String | 
toString()  | 
static LockingComponent.Isolation | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static LockingComponent.Isolation[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final LockingComponent.Isolation NONE
public static final LockingComponent.Isolation SERIALIZABLE
public static final LockingComponent.Isolation REPEATABLE_READ
public static final LockingComponent.Isolation READ_COMMITTED
public static final LockingComponent.Isolation READ_UNCOMMITTED
public static LockingComponent.Isolation[] values()
for (LockingComponent.Isolation c : LockingComponent.Isolation.values()) System.out.println(c);
public static LockingComponent.Isolation 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 getAllowedValue()
public String toString()
toString in class Enum<LockingComponent.Isolation>Copyright © 2018 JBoss by Red Hat. All rights reserved.