com.planet_ink.coffee_mud.Areas.interfaces
Enum Area.Stats

java.lang.Object
  extended by java.lang.Enum<Area.Stats>
      extended by com.planet_ink.coffee_mud.Areas.interfaces.Area.Stats
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Area.Stats>
Enclosing interface:
Area

public static enum Area.Stats
extends java.lang.Enum<Area.Stats>

Various area IStat constants.. see @see com.planet_ink.coffee_mud.Areas.interfaces.Area#getAreaIStats()


Enum Constant Summary
AVG_ALIGNMENT
           
AVG_LEVEL
           
INDOOR_ROOMS
           
MAX_ALIGNMENT
           
MAX_LEVEL
           
MED_ALIGNMENT
           
MED_LEVEL
           
MIN_ALIGNMENT
           
MIN_LEVEL
           
POPULATION
           
TOTAL_INTELLIGENT_LEVELS
           
TOTAL_LEVELS
           
VISITABLE_ROOMS
           
 
Method Summary
static Area.Stats valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Area.Stats[] 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

POPULATION

public static final Area.Stats POPULATION

MIN_LEVEL

public static final Area.Stats MIN_LEVEL

MAX_LEVEL

public static final Area.Stats MAX_LEVEL

AVG_LEVEL

public static final Area.Stats AVG_LEVEL

MED_LEVEL

public static final Area.Stats MED_LEVEL

AVG_ALIGNMENT

public static final Area.Stats AVG_ALIGNMENT

MED_ALIGNMENT

public static final Area.Stats MED_ALIGNMENT

TOTAL_LEVELS

public static final Area.Stats TOTAL_LEVELS

TOTAL_INTELLIGENT_LEVELS

public static final Area.Stats TOTAL_INTELLIGENT_LEVELS

VISITABLE_ROOMS

public static final Area.Stats VISITABLE_ROOMS

INDOOR_ROOMS

public static final Area.Stats INDOOR_ROOMS

MIN_ALIGNMENT

public static final Area.Stats MIN_ALIGNMENT

MAX_ALIGNMENT

public static final Area.Stats MAX_ALIGNMENT
Method Detail

values

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

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

valueOf

public static Area.Stats 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