jchrest.architecture
Enum Emotion.PlutchikBasicEmotion

java.lang.Object
  extended by java.lang.Enum<Emotion.PlutchikBasicEmotion>
      extended by jchrest.architecture.Emotion.PlutchikBasicEmotion
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Emotion.PlutchikBasicEmotion>
Enclosing class:
Emotion

public static enum Emotion.PlutchikBasicEmotion
extends java.lang.Enum<Emotion.PlutchikBasicEmotion>

Basic emotions according to (Plutchik, 1991).


Enum Constant Summary
ANGER
           
ANTICIPATION
           
DISGUST
           
FEAR
           
JOY
           
SADNESS
           
SURPRISE
           
TRUST
           
 
Field Summary
 Emotion.EmotionTheory theory
           
 
Method Summary
 Emotion.EmotionTheory getTheory()
          retrieves the theory that the basic emotion is associated with
static Emotion.PlutchikBasicEmotion valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Emotion.PlutchikBasicEmotion[] 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

JOY

public static final Emotion.PlutchikBasicEmotion JOY

TRUST

public static final Emotion.PlutchikBasicEmotion TRUST

FEAR

public static final Emotion.PlutchikBasicEmotion FEAR

SURPRISE

public static final Emotion.PlutchikBasicEmotion SURPRISE

SADNESS

public static final Emotion.PlutchikBasicEmotion SADNESS

DISGUST

public static final Emotion.PlutchikBasicEmotion DISGUST

ANGER

public static final Emotion.PlutchikBasicEmotion ANGER

ANTICIPATION

public static final Emotion.PlutchikBasicEmotion ANTICIPATION
Field Detail

theory

public Emotion.EmotionTheory theory
Method Detail

values

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

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

valueOf

public static Emotion.PlutchikBasicEmotion 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

getTheory

public Emotion.EmotionTheory getTheory()
retrieves the theory that the basic emotion is associated with