hmi.faceanimation.converters
Enum EmotionConverter.AE

java.lang.Object
  extended by java.lang.Enum<EmotionConverter.AE>
      extended by hmi.faceanimation.converters.EmotionConverter.AE
All Implemented Interfaces:
Serializable, Comparable<EmotionConverter.AE>
Enclosing class:
EmotionConverter

public static enum EmotionConverter.AE
extends Enum<EmotionConverter.AE>


Enum Constant Summary
ANGER
           
DISGUST
           
FEAR
           
JOY
           
NONE
           
SADNESS
           
SURPRISE
           
 
Field Summary
(package private)  float activation
           
(package private)  float angle
           
(package private)  String friendlyName
           
 
Method Summary
 String getFriendlyName()
           
static EmotionConverter.AE valueOf(String name)
          Returns the enum constant of this type with the specified name.
static EmotionConverter.AE[] 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

NONE

public static final EmotionConverter.AE NONE

ANGER

public static final EmotionConverter.AE ANGER

SADNESS

public static final EmotionConverter.AE SADNESS

JOY

public static final EmotionConverter.AE JOY

DISGUST

public static final EmotionConverter.AE DISGUST

FEAR

public static final EmotionConverter.AE FEAR

SURPRISE

public static final EmotionConverter.AE SURPRISE
Field Detail

friendlyName

String friendlyName

angle

float angle

activation

float activation
Method Detail

values

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

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

valueOf

public static EmotionConverter.AE valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

getFriendlyName

public String getFriendlyName()