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