zombie.characters.skills
Enum PerkFactory.Perks

java.lang.Object
  extended by java.lang.Enum<PerkFactory.Perks>
      extended by zombie.characters.skills.PerkFactory.Perks
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<PerkFactory.Perks>
Enclosing class:
PerkFactory

public static enum PerkFactory.Perks
extends java.lang.Enum<PerkFactory.Perks>


Enum Constant Summary
Agility
           
Aiming
           
Axe
           
Blunt
           
Cooking
           
Crafting
           
Farming
           
Fitness
           
Lightfoot
           
MAX
           
Melee
           
Nimble
           
None
           
Reloading
           
Sneak
           
Sprinting
           
Strength
           
Woodwork
           
 
Method Summary
static PerkFactory.Perks fromIndex(int value)
           
static PerkFactory.Perks FromString(java.lang.String str)
           
 int index()
           
static PerkFactory.Perks valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static PerkFactory.Perks[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

None

public static final PerkFactory.Perks None

Agility

public static final PerkFactory.Perks Agility

Cooking

public static final PerkFactory.Perks Cooking

Melee

public static final PerkFactory.Perks Melee

Crafting

public static final PerkFactory.Perks Crafting

Fitness

public static final PerkFactory.Perks Fitness

Strength

public static final PerkFactory.Perks Strength

Blunt

public static final PerkFactory.Perks Blunt

Axe

public static final PerkFactory.Perks Axe

Sprinting

public static final PerkFactory.Perks Sprinting

Lightfoot

public static final PerkFactory.Perks Lightfoot

Nimble

public static final PerkFactory.Perks Nimble

Sneak

public static final PerkFactory.Perks Sneak

Woodwork

public static final PerkFactory.Perks Woodwork

Aiming

public static final PerkFactory.Perks Aiming

Reloading

public static final PerkFactory.Perks Reloading

Farming

public static final PerkFactory.Perks Farming

MAX

public static final PerkFactory.Perks MAX
Method Detail

values

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

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

valueOf

public static PerkFactory.Perks 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

index

public int index()

fromIndex

public static PerkFactory.Perks fromIndex(int value)

FromString

public static PerkFactory.Perks FromString(java.lang.String str)