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