public static enum AurParameter.LockAction extends java.lang.Enum<AurParameter.LockAction>
Enum Constant and Description |
---|
LOCK
Lock the memory
|
PERMANENT_LOCK
Permanent lock the memory
|
PERMANENT_UNLOCK
Permanent unlock the memory
|
UNLOCK
Unlock the memory
|
Modifier and Type | Method and Description |
---|---|
LockAction |
getValue() |
static AurParameter.LockAction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AurParameter.LockAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AurParameter.LockAction UNLOCK
public static final AurParameter.LockAction LOCK
public static final AurParameter.LockAction PERMANENT_UNLOCK
public static final AurParameter.LockAction PERMANENT_LOCK
public static AurParameter.LockAction[] values()
for (AurParameter.LockAction c : AurParameter.LockAction.values()) System.out.println(c);
public static AurParameter.LockAction 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 LockAction getValue()