public static enum XForm.RotateOrder extends Enum<XForm.RotateOrder>
| Modifier and Type | Method and Description |
|---|---|
static XForm.RotateOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XForm.RotateOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XForm.RotateOrder XYZ
public static final XForm.RotateOrder XZY
public static final XForm.RotateOrder YXZ
public static final XForm.RotateOrder YZX
public static final XForm.RotateOrder ZXY
public static final XForm.RotateOrder ZYX
public static XForm.RotateOrder[] values()
for (XForm.RotateOrder c : XForm.RotateOrder.values()) System.out.println(c);
public static XForm.RotateOrder valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2017. All rights reserved.