public enum WriteResultStatus extends java.lang.Enum<WriteResultStatus>
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 write operation was successful.
|
TagMemoryLockedError
The target memory bank is in the locked state.
|
TagMemoryOverrunError
The tag write operation request contained more data than can fit in
the target memory bank.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static WriteResultStatus |
valueOf(int writeResultStatusValue) |
static WriteResultStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WriteResultStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WriteResultStatus Success
public static final WriteResultStatus TagMemoryOverrunError
public static final WriteResultStatus TagMemoryLockedError
public static final WriteResultStatus InsufficientPower
public static final WriteResultStatus NonspecificTagError
public static final WriteResultStatus NoResponseFromTag
public static final WriteResultStatus NonspecificReaderError
public static WriteResultStatus[] values()
for (WriteResultStatus c : WriteResultStatus.values()) System.out.println(c);
public static WriteResultStatus 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 WriteResultStatus valueOf(int writeResultStatusValue)
writeResultStatusValue
- an integer valuepublic int getValue()