com.planet_ink.coffee_mud.Abilities.Skills
Enum Skill_CombatLog.CombatStat

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

protected static enum Skill_CombatLog.CombatStat
extends java.lang.Enum<Skill_CombatLog.CombatStat>


Enum Constant Summary
NUM_COMBAT_ROUNDS
           
NUM_COMBATS
           
NUM_DAMAGE_DONE
           
NUM_DAMAGE_TAKEN
           
NUM_ENEMIES_FOUGHT
           
NUM_ENEMIES_KILLED
           
NUM_GOLD_LOOTED
           
NUM_HEALING_DONE
           
NUM_MANA_USED
           
NUM_MANA_USED_COMBAT
           
NUM_MOVEMENT_USED
           
NUM_MOVEMENT_USED_COMBAT
           
NUM_SECONDS_COMBAT
           
NUM_SECONDS_TOTAL
           
NUM_XP_GAINED
           
 
Method Summary
static Skill_CombatLog.CombatStat valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Skill_CombatLog.CombatStat[] 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

NUM_COMBATS

public static final Skill_CombatLog.CombatStat NUM_COMBATS

NUM_COMBAT_ROUNDS

public static final Skill_CombatLog.CombatStat NUM_COMBAT_ROUNDS

NUM_ENEMIES_FOUGHT

public static final Skill_CombatLog.CombatStat NUM_ENEMIES_FOUGHT

NUM_ENEMIES_KILLED

public static final Skill_CombatLog.CombatStat NUM_ENEMIES_KILLED

NUM_XP_GAINED

public static final Skill_CombatLog.CombatStat NUM_XP_GAINED

NUM_GOLD_LOOTED

public static final Skill_CombatLog.CombatStat NUM_GOLD_LOOTED

NUM_SECONDS_TOTAL

public static final Skill_CombatLog.CombatStat NUM_SECONDS_TOTAL

NUM_SECONDS_COMBAT

public static final Skill_CombatLog.CombatStat NUM_SECONDS_COMBAT

NUM_MANA_USED

public static final Skill_CombatLog.CombatStat NUM_MANA_USED

NUM_MANA_USED_COMBAT

public static final Skill_CombatLog.CombatStat NUM_MANA_USED_COMBAT

NUM_MOVEMENT_USED

public static final Skill_CombatLog.CombatStat NUM_MOVEMENT_USED

NUM_MOVEMENT_USED_COMBAT

public static final Skill_CombatLog.CombatStat NUM_MOVEMENT_USED_COMBAT

NUM_DAMAGE_DONE

public static final Skill_CombatLog.CombatStat NUM_DAMAGE_DONE

NUM_DAMAGE_TAKEN

public static final Skill_CombatLog.CombatStat NUM_DAMAGE_TAKEN

NUM_HEALING_DONE

public static final Skill_CombatLog.CombatStat NUM_HEALING_DONE
Method Detail

values

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

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

valueOf

public static Skill_CombatLog.CombatStat 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