public enum IsolationLevel extends java.lang.Enum<IsolationLevel>
Cache
.Enum Constant | Description |
---|---|
Default |
Isolation level of Cache will be read from the configuration file.
|
InProc |
InProc specifies low Isolation level i.e Cache process is embeded inside the application process.
|
OutProc |
OutProc specifies high isolation level i.e Cache process runs in a seprate process.
|
Modifier and Type | Method | Description |
---|---|---|
static IsolationLevel |
forValue(int value) |
retreives the enum constant of the specified value, if exists.
|
int |
getValue() |
Order is important in enums.By using getValue() method, each enum constant index can be found, just like array index.
|
static IsolationLevel |
valueOf(java.lang.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 Default
public static final IsolationLevel InProc
public static final IsolationLevel OutProc
public static IsolationLevel[] values()
for (IsolationLevel c : IsolationLevel.values()) System.out.println(c);
public static IsolationLevel 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 static IsolationLevel forValue(int value)
value
- enum constant indexpublic int getValue()