public enum KillResultStatus extends java.lang.Enum<KillResultStatus>
TagKillOp
,
TagKillOpResult
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 kill operation was successful.
|
ZeroKillPasswordError
The tag kill password was set to zero; a non-zero password is required
to kill a tag.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static KillResultStatus |
valueOf(int killResultStatusValue)
translates the interger value into an enumeration object
|
static KillResultStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static KillResultStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KillResultStatus Success
public static final KillResultStatus ZeroKillPasswordError
public static final KillResultStatus InsufficientPower
public static final KillResultStatus NonspecificTagError
public static final KillResultStatus NoResponseFromTag
public static final KillResultStatus NonspecificReaderError
public static KillResultStatus[] values()
for (KillResultStatus c : KillResultStatus.values()) System.out.println(c);
public static KillResultStatus 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 KillResultStatus valueOf(int killResultStatusValue)
killResultStatusValue
- integer valuepublic int getValue()