net.sourceforge.cilib.games.items
Enum GameToken.Tetris
java.lang.Object
java.lang.Enum<GameToken.Tetris>
net.sourceforge.cilib.games.items.GameToken.Tetris
- All Implemented Interfaces:
- Serializable, Comparable<GameToken.Tetris>, GameEnum
- Enclosing class:
- GameToken
public static enum GameToken.Tetris
- extends Enum<GameToken.Tetris>
- implements GameEnum
Tetris tokens
- Author:
- leo
BOX
public static final GameToken.Tetris BOX
LSHAPE
public static final GameToken.Tetris LSHAPE
RLSHAPE
public static final GameToken.Tetris RLSHAPE
LINE
public static final GameToken.Tetris LINE
T
public static final GameToken.Tetris T
ZIGZAG
public static final GameToken.Tetris ZIGZAG
RZIGZAG
public static final GameToken.Tetris RZIGZAG
values
public static GameToken.Tetris[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (GameToken.Tetris c : GameToken.Tetris.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static GameToken.Tetris valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
getDescription
public String getDescription()
- Return a description of a specific Enum, this description is
used in the Game's
display()
method to show
a GameItem
- Specified by:
getDescription
in interface GameEnum
- Returns:
- the string description.
Copyright © 2009 CIRG. All Rights Reserved.