public enum EasyScriptCardState extends java.lang.Enum<EasyScriptCardState>
Enum Constant and Description |
---|
CARD_DATA
We're expecting card data.
|
CARD_PROCESSED
Card data was successfully parsed.
|
NOT_A_CARD
Not a card.
|
UNKNOWN
Unknown.
|
Modifier and Type | Method and Description |
---|---|
static EasyScriptCardState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EasyScriptCardState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EasyScriptCardState CARD_DATA
public static final EasyScriptCardState CARD_PROCESSED
public static final EasyScriptCardState NOT_A_CARD
public static final EasyScriptCardState UNKNOWN
public static EasyScriptCardState[] values()
for (EasyScriptCardState c : EasyScriptCardState.values()) System.out.println(c);
public static EasyScriptCardState 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