public enum YawPitchRollIndicator extends Enum<YawPitchRollIndicator> implements Enumeration
YawPitchRoll
Enum Constant and Description |
---|
PRP
The second axes, followed by the first and then second axes.
|
PRY
The second axes, followed by the first and then third axes.
|
PYP
The second axes, followed by the third and then second axes.
|
PYR
The second axes, followed by the third and then first axes.
|
RPR
The first axes, followed by the second and then first axes.
|
RPY
The first axes, followed by the second and then third axes.
|
RYP
The first axes, followed by the third and then second axes.
|
RYR
The first axes, followed by the third and then first axes.
|
YPR
The third axes, followed by the second and then first axes.
|
YPY
The third axes, followed by the second and then third axes.
|
YRP
The third axes, followed by the first and then second axes.
|
YRY
The third axes, followed by the first and then third axes.
|
Modifier and Type | Method and Description |
---|---|
static YawPitchRollIndicator |
getDefault()
Get the enum constant that is considered to be the default.
|
static YawPitchRollIndicator |
getFromValue(int value)
Get the enum constant that is associated with the given numeric value.
|
int |
getValue()
Get the numeric value associated with this enum constant.
|
static YawPitchRollIndicator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static YawPitchRollIndicator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final YawPitchRollIndicator YPR
public static final YawPitchRollIndicator YRP
public static final YawPitchRollIndicator PRY
public static final YawPitchRollIndicator PYR
public static final YawPitchRollIndicator RYP
public static final YawPitchRollIndicator RPY
public static final YawPitchRollIndicator YPY
public static final YawPitchRollIndicator YRY
public static final YawPitchRollIndicator PRP
public static final YawPitchRollIndicator PYP
public static final YawPitchRollIndicator RYR
public static final YawPitchRollIndicator RPR
public static YawPitchRollIndicator[] values()
for (YawPitchRollIndicator c : YawPitchRollIndicator.values()) System.out.println(c);
public static YawPitchRollIndicator 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 nullpublic int getValue()
getValue
in interface Enumeration
@Nonnull public static YawPitchRollIndicator getFromValue(int value)
value
- a numeric value.@Nullable public static YawPitchRollIndicator getDefault()