public enum LockType extends java.lang.Enum<LockType>
RFIDReader.lock(LockFields, LockType, String)
.Enum Constant and Description |
---|
LOCK
Lock fields.
|
PERMALOCK
Permanently lock fields.
|
PERMAUNLOCK
Permanently unlock fields.
|
UNLOCK
Unlock fields.
|
Modifier and Type | Method and Description |
---|---|
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 LOCK
public static final LockType UNLOCK
public static final LockType PERMALOCK
public static final LockType PERMAUNLOCK
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 null