com.planet_ink.coffee_mud.Abilities.Common
Enum BuildingSkill.Building

java.lang.Object
  extended by java.lang.Enum<BuildingSkill.Building>
      extended by com.planet_ink.coffee_mud.Abilities.Common.BuildingSkill.Building
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<BuildingSkill.Building>
Enclosing class:
BuildingSkill

protected static enum BuildingSkill.Building
extends java.lang.Enum<BuildingSkill.Building>


Enum Constant Summary
DELEFFECT
           
DEMOLISH
           
DESC
           
DOOR
           
EXCAVATE
           
EXITEFFECT
           
ITEM
           
ROOM
           
ROOMEFFECT
           
STAIRS
           
TITLE
           
WALL
           
 
Method Summary
static BuildingSkill.Building valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static BuildingSkill.Building[] 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

WALL

public static final BuildingSkill.Building WALL

DOOR

public static final BuildingSkill.Building DOOR

ROOM

public static final BuildingSkill.Building ROOM

ITEM

public static final BuildingSkill.Building ITEM

DEMOLISH

public static final BuildingSkill.Building DEMOLISH

TITLE

public static final BuildingSkill.Building TITLE

DESC

public static final BuildingSkill.Building DESC

STAIRS

public static final BuildingSkill.Building STAIRS

EXCAVATE

public static final BuildingSkill.Building EXCAVATE

ROOMEFFECT

public static final BuildingSkill.Building ROOMEFFECT

EXITEFFECT

public static final BuildingSkill.Building EXITEFFECT

DELEFFECT

public static final BuildingSkill.Building DELEFFECT
Method Detail

values

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

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

valueOf

public static BuildingSkill.Building valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null