public static enum GimbalCoupling.AxisSet extends java.lang.Enum<GimbalCoupling.AxisSet>
| Modifier and Type | Method and Description | 
|---|---|
| static GimbalCoupling.AxisSet | fromString(java.lang.String str)Same as valueOf but returns null instead of throwing an exception if
 the value is unrecognized. | 
| static GimbalCoupling.AxisSet | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static GimbalCoupling.AxisSet[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final GimbalCoupling.AxisSet ZYX
public static final GimbalCoupling.AxisSet XYZ
public static GimbalCoupling.AxisSet[] values()
for (GimbalCoupling.AxisSet c : GimbalCoupling.AxisSet.values()) System.out.println(c);
public static GimbalCoupling.AxisSet 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 nullpublic static GimbalCoupling.AxisSet fromString(java.lang.String str)