se.chalmers.dat255.risk.model
public static enum ICard.CardType extends java.lang.Enum<ICard.CardType>
Modifier and Type | Method and Description |
---|---|
static ICard.CardType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ICard.CardType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ICard.CardType INFANTRY
public static final ICard.CardType CAVALRY
public static final ICard.CardType ARTILLERY
public static final ICard.CardType JOKER
public static ICard.CardType[] values()
for (ICard.CardType c : ICard.CardType.values()) System.out.println(c);
public static ICard.CardType 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