public enum TagLockState extends java.lang.Enum<TagLockState> implements java.io.Serializable
| Enum Constant and Description |
|---|
Lock
Leave the tag memory bank in the 'Lock' state;
the tag memory bank can subsequently be unlocked.
|
None
Do not change the lock state of the tag memory bank.
|
Permalock
Leave the tag memory bank in the 'Permalock' state;
the tag memory bank can never subsequently be unlocked.
|
Permaunlock
Leave the tag memory bank in the 'Permaunlock' state;
the tag memory bank can never subsequently be locked.
|
Unlock
Leave the tag memory bank in the 'Unlock' state;
the tag memory bank can subsequently be locked.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static TagLockState |
valueOf(int tagLockStateValue) |
static TagLockState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TagLockState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TagLockState Lock
public static final TagLockState Permalock
public static final TagLockState Permaunlock
public static final TagLockState Unlock
public static final TagLockState None
public static TagLockState[] values()
for (TagLockState c : TagLockState.values()) System.out.println(c);
public static TagLockState 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 TagLockState valueOf(int tagLockStateValue)
tagLockStateValue - an integer valuepublic int getValue()