public enum LockResultStatus extends java.lang.Enum<LockResultStatus>
TagLockOpResult,
TagLockOp| Enum Constant and Description |
|---|
InsufficientPower
The tag did not meet the required RSSI threshold.
|
NonspecificReaderError
An unidentified reader error occurred.
|
NonspecificTagError
An unidentified tag error occurred.
|
NoResponseFromTag
No ACK response was received from the tag in response to the operation.
|
Success
The tag lock operation completed successfully.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static LockResultStatus |
valueOf(int lockResultStatusEnum) |
static LockResultStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LockResultStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LockResultStatus Success
public static final LockResultStatus InsufficientPower
public static final LockResultStatus NonspecificTagError
public static final LockResultStatus NoResponseFromTag
public static final LockResultStatus NonspecificReaderError
public static LockResultStatus[] values()
for (LockResultStatus c : LockResultStatus.values()) System.out.println(c);
public static LockResultStatus 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 LockResultStatus valueOf(int lockResultStatusEnum)
lockResultStatusEnum - an integer valuepublic int getValue()