clarion.tools
Enum Personality.PrimaryDrives

java.lang.Object
  extended by java.lang.Enum<Personality.PrimaryDrives>
      extended by clarion.tools.Personality.PrimaryDrives
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Personality.PrimaryDrives>
Enclosing class:
Personality

public static enum Personality.PrimaryDrives
extends java.lang.Enum<Personality.PrimaryDrives>

The primary drives proposed by CLARION.


Enum Constant Summary
AFFILIATION_AND_BELONGINGNESS
           
AUTONOMY
           
AVOIDING_PHYSICAL_DANGER
           
AVOIDING_THE_UNPLEASANT
           
CONSERVATION
           
CURIOSITY
           
DEFERENCE
           
DOMINANCE_AND_POWER
           
FAIRNESS
           
FOOD
           
HONOR
           
NURTURANCE
           
RECOGNITION_AND_ACHEIVEMENT
           
REPRODUCTION
           
REST
           
SIMILANCE
           
WATER
           
 
Method Summary
static Personality.PrimaryDrives valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Personality.PrimaryDrives[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

FOOD

public static final Personality.PrimaryDrives FOOD

WATER

public static final Personality.PrimaryDrives WATER

REST

public static final Personality.PrimaryDrives REST

AVOIDING_PHYSICAL_DANGER

public static final Personality.PrimaryDrives AVOIDING_PHYSICAL_DANGER

REPRODUCTION

public static final Personality.PrimaryDrives REPRODUCTION

AVOIDING_THE_UNPLEASANT

public static final Personality.PrimaryDrives AVOIDING_THE_UNPLEASANT

AFFILIATION_AND_BELONGINGNESS

public static final Personality.PrimaryDrives AFFILIATION_AND_BELONGINGNESS

RECOGNITION_AND_ACHEIVEMENT

public static final Personality.PrimaryDrives RECOGNITION_AND_ACHEIVEMENT

DOMINANCE_AND_POWER

public static final Personality.PrimaryDrives DOMINANCE_AND_POWER

AUTONOMY

public static final Personality.PrimaryDrives AUTONOMY

DEFERENCE

public static final Personality.PrimaryDrives DEFERENCE

SIMILANCE

public static final Personality.PrimaryDrives SIMILANCE

FAIRNESS

public static final Personality.PrimaryDrives FAIRNESS

HONOR

public static final Personality.PrimaryDrives HONOR

NURTURANCE

public static final Personality.PrimaryDrives NURTURANCE

CONSERVATION

public static final Personality.PrimaryDrives CONSERVATION

CURIOSITY

public static final Personality.PrimaryDrives CURIOSITY
Method Detail

values

public static final Personality.PrimaryDrives[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(Personality.PrimaryDrives c : Personality.PrimaryDrives.values())
        System.out.println(c);

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

valueOf

public static Personality.PrimaryDrives 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