org.xith3d.schedops.movement
Enum TransformationDirectives.AxisOrder

java.lang.Object
  extended by java.lang.Enum<TransformationDirectives.AxisOrder>
      extended by org.xith3d.schedops.movement.TransformationDirectives.AxisOrder
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<TransformationDirectives.AxisOrder>
Enclosing class:
TransformationDirectives

public static enum TransformationDirectives.AxisOrder
extends java.lang.Enum<TransformationDirectives.AxisOrder>

The order in which to rotate around the axes.


Enum Constant Summary
XYZ
           
XZY
           
YXZ
           
YZX
           
ZXY
           
ZYX
           
 
Method Summary
static TransformationDirectives.AxisOrder getDefault()
           
static TransformationDirectives.AxisOrder valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static TransformationDirectives.AxisOrder[] 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

XYZ

public static final TransformationDirectives.AxisOrder XYZ

XZY

public static final TransformationDirectives.AxisOrder XZY

YXZ

public static final TransformationDirectives.AxisOrder YXZ

YZX

public static final TransformationDirectives.AxisOrder YZX

ZXY

public static final TransformationDirectives.AxisOrder ZXY

ZYX

public static final TransformationDirectives.AxisOrder ZYX
Method Detail

values

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

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

valueOf

public static TransformationDirectives.AxisOrder 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

getDefault

public static TransformationDirectives.AxisOrder getDefault()