public enum ImpinjAuthenticateResult extends java.lang.Enum<ImpinjAuthenticateResult>
Enum Constant and Description |
---|
Failure
The operation failed.
|
IncorrectPasswordError
The operation failed because an incorrect password was supplied.
|
InsufficientPower
There was insufficient power to perform the operation.
|
NonspecificReaderError
The reader operation failed for an unknown reason.
|
NonspecificTagError
The tag operation failed for an unknown reason.
|
NoResponseFromTag
The operation failed because the reader did not receive a response from
the tag.
|
Success
The operation was successful.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static ImpinjAuthenticateResult |
valueOf(int impinjAuthenticateResultValue) |
static ImpinjAuthenticateResult |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ImpinjAuthenticateResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImpinjAuthenticateResult Success
public static final ImpinjAuthenticateResult Failure
public static final ImpinjAuthenticateResult InsufficientPower
public static final ImpinjAuthenticateResult NonspecificTagError
public static final ImpinjAuthenticateResult NoResponseFromTag
public static final ImpinjAuthenticateResult NonspecificReaderError
public static final ImpinjAuthenticateResult IncorrectPasswordError
public static ImpinjAuthenticateResult[] values()
for (ImpinjAuthenticateResult c : ImpinjAuthenticateResult.values()) System.out.println(c);
public static ImpinjAuthenticateResult 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 ImpinjAuthenticateResult valueOf(int impinjAuthenticateResultValue)
impinjAuthenticateResultValue
- an integer valuepublic int getValue()