com.planet_ink.coffee_mud.Abilities
Enum PlanarAbility.PlanarVar

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

public static enum PlanarAbility.PlanarVar
extends java.lang.Enum<PlanarAbility.PlanarVar>


Enum Constant Summary
ABSORB
           
ADJSIZE
           
ADJSTAT
           
ADJUST
           
AEFFECT
           
ALIGNMENT
           
AREABLURBS
           
AREAEMOTER
           
ATMOSPHERE
           
BEHAVAFFID
           
BEHAVE
           
BONUSDAMAGESTAT
           
ELITE
           
ENABLE
           
FATIGUERATE
           
HOURS
           
ID
           
LEVELADJ
           
MIXRACE
           
MOBCOPY
           
MOBRESIST
           
PREFIX
           
RECOVERRATE
           
REFFECT
           
REQWEAPONS
           
ROOMADJS
           
ROOMCOLOR
           
SETSTAT
           
SPECFLAGS
           
TRANSITIONAL
           
WEAPONMAXRANGE
           
 
Method Summary
static PlanarAbility.PlanarVar valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static PlanarAbility.PlanarVar[] 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

ID

public static final PlanarAbility.PlanarVar ID

TRANSITIONAL

public static final PlanarAbility.PlanarVar TRANSITIONAL

ALIGNMENT

public static final PlanarAbility.PlanarVar ALIGNMENT

PREFIX

public static final PlanarAbility.PlanarVar PREFIX

LEVELADJ

public static final PlanarAbility.PlanarVar LEVELADJ

MOBRESIST

public static final PlanarAbility.PlanarVar MOBRESIST

SETSTAT

public static final PlanarAbility.PlanarVar SETSTAT

BEHAVAFFID

public static final PlanarAbility.PlanarVar BEHAVAFFID

ADJSTAT

public static final PlanarAbility.PlanarVar ADJSTAT

ADJSIZE

public static final PlanarAbility.PlanarVar ADJSIZE

ADJUST

public static final PlanarAbility.PlanarVar ADJUST

MOBCOPY

public static final PlanarAbility.PlanarVar MOBCOPY

BEHAVE

public static final PlanarAbility.PlanarVar BEHAVE

ENABLE

public static final PlanarAbility.PlanarVar ENABLE

WEAPONMAXRANGE

public static final PlanarAbility.PlanarVar WEAPONMAXRANGE

BONUSDAMAGESTAT

public static final PlanarAbility.PlanarVar BONUSDAMAGESTAT

REQWEAPONS

public static final PlanarAbility.PlanarVar REQWEAPONS

ATMOSPHERE

public static final PlanarAbility.PlanarVar ATMOSPHERE

AREABLURBS

public static final PlanarAbility.PlanarVar AREABLURBS

ABSORB

public static final PlanarAbility.PlanarVar ABSORB

HOURS

public static final PlanarAbility.PlanarVar HOURS

RECOVERRATE

public static final PlanarAbility.PlanarVar RECOVERRATE

FATIGUERATE

public static final PlanarAbility.PlanarVar FATIGUERATE

REFFECT

public static final PlanarAbility.PlanarVar REFFECT

AEFFECT

public static final PlanarAbility.PlanarVar AEFFECT

SPECFLAGS

public static final PlanarAbility.PlanarVar SPECFLAGS

MIXRACE

public static final PlanarAbility.PlanarVar MIXRACE

ELITE

public static final PlanarAbility.PlanarVar ELITE

ROOMCOLOR

public static final PlanarAbility.PlanarVar ROOMCOLOR

ROOMADJS

public static final PlanarAbility.PlanarVar ROOMADJS

AREAEMOTER

public static final PlanarAbility.PlanarVar AREAEMOTER
Method Detail

values

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

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

valueOf

public static PlanarAbility.PlanarVar 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