public enum LockMemory extends java.lang.Enum<LockMemory>
Enum Constant and Description |
---|
ACCESS_PASSWORD |
EPC |
KILL_PASSWORD |
TID |
USER |
Modifier and Type | Method and Description |
---|---|
byte |
getValue() |
static LockMemory |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LockMemory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LockMemory EPC
public static final LockMemory TID
public static final LockMemory USER
public static final LockMemory ACCESS_PASSWORD
public static final LockMemory KILL_PASSWORD
public static LockMemory[] values()
for (LockMemory c : LockMemory.values()) System.out.println(c);
public static LockMemory 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 byte getValue()