public static enum PinResult.PinState extends java.lang.Enum<PinResult.PinState>
states of PIN
Enum Constant and Description |
---|
NO_ERROR |
PASSWORD_DISABLED |
PASSWORD_NOT_FOUND |
RETRY_COUNTER_COUNT_00 |
RETRY_COUNTER_COUNT_01 |
RETRY_COUNTER_COUNT_02 |
RETRY_COUNTER_COUNT_03 |
SECURITY_STATUS_NOT_SATISFIED |
TRANSPORT_STATUS_EMPTY_PIN |
TRANSPORT_STATUS_TRANSPORT_PIN |
Modifier and Type | Method and Description |
---|---|
static PinResult.PinState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PinResult.PinState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PinResult.PinState TRANSPORT_STATUS_TRANSPORT_PIN
public static final PinResult.PinState TRANSPORT_STATUS_EMPTY_PIN
public static final PinResult.PinState PASSWORD_DISABLED
public static final PinResult.PinState RETRY_COUNTER_COUNT_00
public static final PinResult.PinState RETRY_COUNTER_COUNT_01
public static final PinResult.PinState RETRY_COUNTER_COUNT_02
public static final PinResult.PinState RETRY_COUNTER_COUNT_03
public static final PinResult.PinState NO_ERROR
public static final PinResult.PinState SECURITY_STATUS_NOT_SATISFIED
public static final PinResult.PinState PASSWORD_NOT_FOUND
public static PinResult.PinState[] values()
for (PinResult.PinState c : PinResult.PinState.values()) System.out.println(c);
public static PinResult.PinState 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 null