org.starhope.appius.game
Enum RoomLayerKind

java.lang.Object
  extended by java.lang.Enum<RoomLayerKind>
      extended by org.starhope.appius.game.RoomLayerKind
All Implemented Interfaces:
Serializable, Comparable<RoomLayerKind>

public enum RoomLayerKind
extends Enum<RoomLayerKind>

WRITEME: Document this type.

Author:
brpocock@star-hope.org

Enum Constant Summary
CEILING
          WRITEME: Document this brpocock@star-hope.org
FLOOR
          WRITEME: Document this brpocock@star-hope.org
GENERAL
          WRITEME: Document this brpocock@star-hope.org
SKY
          WRITEME: Document this brpocock@star-hope.org
SUBFLOOR
          WRITEME: Document this brpocock@star-hope.org
WALL
          WRITEME: Document this brpocock@star-hope.org
WEATHER
          WRITEME: Document this brpocock@star-hope.org
 
Method Summary
static RoomLayerKind valueOf(String name)
          Returns the enum constant of this type with the specified name.
static RoomLayerKind[] 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

CEILING

public static final RoomLayerKind CEILING
WRITEME: Document this brpocock@star-hope.org


FLOOR

public static final RoomLayerKind FLOOR
WRITEME: Document this brpocock@star-hope.org


GENERAL

public static final RoomLayerKind GENERAL
WRITEME: Document this brpocock@star-hope.org


SKY

public static final RoomLayerKind SKY
WRITEME: Document this brpocock@star-hope.org


SUBFLOOR

public static final RoomLayerKind SUBFLOOR
WRITEME: Document this brpocock@star-hope.org


WALL

public static final RoomLayerKind WALL
WRITEME: Document this brpocock@star-hope.org


WEATHER

public static final RoomLayerKind WEATHER
WRITEME: Document this brpocock@star-hope.org

Method Detail

values

public static RoomLayerKind[] 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 (RoomLayerKind c : RoomLayerKind.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static RoomLayerKind 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