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

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

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


Enum Constant Summary
CAVEONLY
           
DIR
           
DIRUPDOWN
           
DOWNONLY
           
FRESHWATER
           
INDOOR
           
NODOWN
           
NOWALL
           
OUTDOOR
           
SALTWATER
           
UNDERWATERONLY
           
WATERONLY
           
WATERSURFACEONLY
           
 
Method Summary
static BuildingSkill.Flag valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static BuildingSkill.Flag[] 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

DIR

public static final BuildingSkill.Flag DIR

DIRUPDOWN

public static final BuildingSkill.Flag DIRUPDOWN

NOWALL

public static final BuildingSkill.Flag NOWALL

INDOOR

public static final BuildingSkill.Flag INDOOR

OUTDOOR

public static final BuildingSkill.Flag OUTDOOR

CAVEONLY

public static final BuildingSkill.Flag CAVEONLY

NODOWN

public static final BuildingSkill.Flag NODOWN

DOWNONLY

public static final BuildingSkill.Flag DOWNONLY

WATERONLY

public static final BuildingSkill.Flag WATERONLY

WATERSURFACEONLY

public static final BuildingSkill.Flag WATERSURFACEONLY

UNDERWATERONLY

public static final BuildingSkill.Flag UNDERWATERONLY

SALTWATER

public static final BuildingSkill.Flag SALTWATER

FRESHWATER

public static final BuildingSkill.Flag FRESHWATER
Method Detail

values

public static BuildingSkill.Flag[] 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.Flag c : BuildingSkill.Flag.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.Flag 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