com.fabula.timeline.service.model
Enum Emotion.EmotionEnum

java.lang.Object
  extended by java.lang.Enum<Emotion.EmotionEnum>
      extended by com.fabula.timeline.service.model.Emotion.EmotionEnum
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Emotion.EmotionEnum>
Enclosing class:
Emotion

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


Enum Constant Summary
COOL
           
DISLIKE
           
LIKE
           
SAD
           
 
Method Summary
static Emotion.EmotionEnum fromValue(java.lang.String v)
           
 java.lang.String getName()
           
 java.lang.String getValue()
           
static Emotion.EmotionEnum valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Emotion.EmotionEnum[] 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

LIKE

public static final Emotion.EmotionEnum LIKE

COOL

public static final Emotion.EmotionEnum COOL

DISLIKE

public static final Emotion.EmotionEnum DISLIKE

SAD

public static final Emotion.EmotionEnum SAD
Method Detail

values

public static Emotion.EmotionEnum[] 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.EmotionEnum c : Emotion.EmotionEnum.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.EmotionEnum 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

getValue

public java.lang.String getValue()

getName

public java.lang.String getName()

fromValue

public static Emotion.EmotionEnum fromValue(java.lang.String v)