|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<GameToken> net.sourceforge.cilib.games.items.GameToken
public enum GameToken
This enum defines descriptors for any game items.
Nested Class Summary | |
---|---|
static class |
GameToken.PredatorPrey
Predator Prey tokens |
static class |
GameToken.Tetris
Tetris tokens |
static class |
GameToken.TicTacToe
Tick Tack Toe tokens |
Enum Constant Summary | |
---|---|
DEFAULT
|
Method Summary | |
---|---|
String |
getDescription()
Return a description of a specific Enum, this description is used in the Game's display() method to show
a GameItem |
static GameToken |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static GameToken[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final GameToken DEFAULT
Method Detail |
---|
public static GameToken[] values()
for (GameToken c : GameToken.values()) System.out.println(c);
public static GameToken valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic String getDescription()
display()
method to show
a GameItem
getDescription
in interface GameEnum
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |