public static enum IccCardStatus.CardState extends Enum<IccCardStatus.CardState>
Enum Constant and Description |
---|
CARDSTATE_ABSENT |
CARDSTATE_ERROR |
CARDSTATE_PRESENT |
CARDSTATE_RESTRICTED |
Modifier and Type | Method and Description |
---|---|
static IccCardStatus.CardState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IccCardStatus.CardState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IccCardStatus.CardState CARDSTATE_ABSENT
public static final IccCardStatus.CardState CARDSTATE_PRESENT
public static final IccCardStatus.CardState CARDSTATE_ERROR
public static final IccCardStatus.CardState CARDSTATE_RESTRICTED
public static IccCardStatus.CardState[] values()
for (IccCardStatus.CardState c : IccCardStatus.CardState.values()) System.out.println(c);
public static IccCardStatus.CardState 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