Enum Constant and Description |
---|
BID_CHOOSING |
BID_CHOSEN |
CARDS_CUTTING |
CARDS_DEALING |
CARDS_SHUFFLING |
CARDS_SPREADING |
DEALER_CHOOSING |
DEALER_CHOSEN |
ECART_CONSTITUTED |
ECART_CONSTITUTING |
GAME_ENDED |
PETIT_SEC_DETECTED |
Modifier and Type | Method and Description |
---|---|
static GameState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GameState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GameState CARDS_SPREADING
public static final GameState DEALER_CHOOSING
public static final GameState DEALER_CHOSEN
public static final GameState CARDS_DEALING
public static final GameState PETIT_SEC_DETECTED
public static final GameState BID_CHOOSING
public static final GameState BID_CHOSEN
public static final GameState ECART_CONSTITUTING
public static final GameState ECART_CONSTITUTED
public static final GameState CARDS_SHUFFLING
public static final GameState CARDS_CUTTING
public static final GameState GAME_ENDED
public static GameState[] values()
for (GameState c : GameState.values()) System.out.println(c);
public static GameState 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