public enum ReadResultStatus extends java.lang.Enum<ReadResultStatus>
TagReadOpResult
,
TagReadOp
Enum Constant and Description |
---|
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 read operation was successful.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static ReadResultStatus |
valueOf(int readResultStatusValue) |
static ReadResultStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReadResultStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReadResultStatus Success
public static final ReadResultStatus NonspecificTagError
public static final ReadResultStatus NoResponseFromTag
public static final ReadResultStatus NonspecificReaderError
public static ReadResultStatus[] values()
for (ReadResultStatus c : ReadResultStatus.values()) System.out.println(c);
public static ReadResultStatus 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 ReadResultStatus valueOf(int readResultStatusValue)
readResultStatusValue
- integer valuepublic int getValue()