hmi.bml.core
Enum HeadBehaviour.Orientation

java.lang.Object
  extended by java.lang.Enum<HeadBehaviour.Orientation>
      extended by hmi.bml.core.HeadBehaviour.Orientation
All Implemented Interfaces:
Serializable, Comparable<HeadBehaviour.Orientation>
Enclosing class:
HeadBehaviour

private static enum HeadBehaviour.Orientation
extends Enum<HeadBehaviour.Orientation>


Enum Constant Summary
DOWN
           
DOWN_LEFT
           
DOWN_RIGHT
           
FRONT
           
LEFT
           
POLAR_ANGLE
           
RIGHT
           
UP
           
UP_LEFT
           
UP_RIGHT
           
 
Method Summary
static HeadBehaviour.Orientation valueOf(String name)
          Returns the enum constant of this type with the specified name.
static HeadBehaviour.Orientation[] 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

FRONT

public static final HeadBehaviour.Orientation FRONT

RIGHT

public static final HeadBehaviour.Orientation RIGHT

LEFT

public static final HeadBehaviour.Orientation LEFT

UP

public static final HeadBehaviour.Orientation UP

DOWN

public static final HeadBehaviour.Orientation DOWN

UP_RIGHT

public static final HeadBehaviour.Orientation UP_RIGHT

UP_LEFT

public static final HeadBehaviour.Orientation UP_LEFT

DOWN_RIGHT

public static final HeadBehaviour.Orientation DOWN_RIGHT

DOWN_LEFT

public static final HeadBehaviour.Orientation DOWN_LEFT

POLAR_ANGLE

public static final HeadBehaviour.Orientation POLAR_ANGLE
Method Detail

values

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

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

valueOf

public static HeadBehaviour.Orientation 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