@Deprecated public enum GameMessage extends Enum<GameMessage>
Travaux pratiques d'IA54.
Université de Technologie de Belfort-monbéliard.
| Enum Constant and Description |
|---|
END_OF_GAME
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
static GameMessage |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static GameMessage[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GameMessage END_OF_GAME
public static GameMessage[] values()
for (GameMessage c : GameMessage.values()) System.out.println(c);
public static GameMessage valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullCopyright © 2003-2013 Arakhnê.org Members. All rights reserved under LGPL license terms.