public static enum IccCardStatus.PinState extends Enum<IccCardStatus.PinState>
Enum Constant and Description |
---|
PINSTATE_DISABLED |
PINSTATE_ENABLED_BLOCKED |
PINSTATE_ENABLED_NOT_VERIFIED |
PINSTATE_ENABLED_PERM_BLOCKED |
PINSTATE_ENABLED_VERIFIED |
PINSTATE_UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static IccCardStatus.PinState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IccCardStatus.PinState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IccCardStatus.PinState PINSTATE_UNKNOWN
public static final IccCardStatus.PinState PINSTATE_ENABLED_NOT_VERIFIED
public static final IccCardStatus.PinState PINSTATE_ENABLED_VERIFIED
public static final IccCardStatus.PinState PINSTATE_DISABLED
public static final IccCardStatus.PinState PINSTATE_ENABLED_BLOCKED
public static final IccCardStatus.PinState PINSTATE_ENABLED_PERM_BLOCKED
public static IccCardStatus.PinState[] values()
for (IccCardStatus.PinState c : IccCardStatus.PinState.values()) System.out.println(c);
public static IccCardStatus.PinState valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null