Enum Constant and Description |
---|
Locked
Perform a 'Lock' operation on the tag memory bank; the tag memory bank
can subsequently be unlocked.
|
None
Perform no lock operation on the tag memory bank;
the tag memory bank lock status remains unaffected.
|
PermaLocked
Perform a 'Permalock' operation on the tag memory bank; the tag memory
bank can never subsequently be unlocked.
|
PermaUnlocked
Perform a 'Permaunlock' operation on the tag memory bank; the tag memory
bank can never subsequently be locked.
|
Unlocked
Perform an 'Unlock' operation on the tag memory bank; the tag memory
bank can never subsequently be unlocked.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static LockType |
valueOf(int lockTypeValue) |
static LockType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LockType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LockType None
public static final LockType Unlocked
public static final LockType Locked
public static final LockType PermaUnlocked
public static final LockType PermaLocked
public static LockType[] values()
for (LockType c : LockType.values()) System.out.println(c);
public static LockType 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 LockType valueOf(int lockTypeValue)
lockTypeValue
- integer valuepublic int getValue()