public enum LockMemoryBank extends java.lang.Enum<LockMemoryBank> implements java.io.Serializable
TagLockOp
Enum Constant and Description |
---|
AccessPassword
Perform a lock operation on the Access password memory region in
the reserved memory bank.
|
Epc
Perform a lock operation on the EPC memory bank.
|
KillPassword
Perform a lock operation on the Kill password memory region in
the reserved memory bank.
|
Tid
Perform a lock operation on the TID memory bank.
|
User
Perform a lock operation on the User memory bank.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static LockMemoryBank |
valueOf(int lockMemoryBankValue) |
static LockMemoryBank |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LockMemoryBank[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LockMemoryBank KillPassword
public static final LockMemoryBank AccessPassword
public static final LockMemoryBank Epc
public static final LockMemoryBank Tid
public static final LockMemoryBank User
public static LockMemoryBank[] values()
for (LockMemoryBank c : LockMemoryBank.values()) System.out.println(c);
public static LockMemoryBank 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 LockMemoryBank valueOf(int lockMemoryBankValue)
lockMemoryBankValue
- an integer valuepublic int getValue()