public static enum FakeCard.CardState extends java.lang.Enum<FakeCard.CardState>
Enum Constant and Description |
---|
APRO |
CALL |
CONT |
EXPI |
FORM |
FUND |
OTHE |
SECU |
Modifier and Type | Method and Description |
---|---|
static java.util.List<FakeCard.CardState> |
all() |
static FakeCard.CardState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FakeCard.CardState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FakeCard.CardState APRO
public static final FakeCard.CardState CONT
public static final FakeCard.CardState CALL
public static final FakeCard.CardState FUND
public static final FakeCard.CardState SECU
public static final FakeCard.CardState EXPI
public static final FakeCard.CardState FORM
public static final FakeCard.CardState OTHE
public static FakeCard.CardState[] values()
for (FakeCard.CardState c : FakeCard.CardState.values()) System.out.println(c);
public static FakeCard.CardState 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 nullpublic static java.util.List<FakeCard.CardState> all()