public enum RotationOrder extends java.lang.Enum<RotationOrder>
Enum Constant and Description |
---|
RotationOrderXYZ |
RotationOrderXZY |
RotationOrderYXZ |
RotationOrderYZX |
RotationOrderZXY |
RotationOrderZYX |
Modifier and Type | Method and Description |
---|---|
static RotationOrder |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RotationOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RotationOrder RotationOrderXYZ
public static final RotationOrder RotationOrderXZY
public static final RotationOrder RotationOrderYXZ
public static final RotationOrder RotationOrderYZX
public static final RotationOrder RotationOrderZXY
public static final RotationOrder RotationOrderZYX
public static RotationOrder[] values()
for (RotationOrder c : RotationOrder.values()) System.out.println(c);
public static RotationOrder valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null