private static enum Lock.MemRecordingType extends java.lang.Enum<Lock.MemRecordingType>
| Enum Constant and Description |
|---|
DIRECT
Direct accounting (regarding group).
|
INDIRECT
Indirect accounting (regarding group).
|
NONE
No memory accounting.
|
| Modifier and Type | Method and Description |
|---|---|
static Lock.MemRecordingType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Lock.MemRecordingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Lock.MemRecordingType NONE
public static final Lock.MemRecordingType DIRECT
public static final Lock.MemRecordingType INDIRECT
public static Lock.MemRecordingType[] values()
for (Lock.MemRecordingType c : Lock.MemRecordingType.values()) System.out.println(c);
public static Lock.MemRecordingType 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 null