Enum Class EulerKey
- All Implemented Interfaces:
Serializable,Comparable<EulerKey>,Constable
Keys for
APM Euler angles entries.- Since:
- 10.2
- Author:
- Bryan Cazabonne
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionFirst body rotation angle entry.First body rotation rate entry.Second body rotation angle entry.Second body rotation rate entry.Third body rotation angle entry.Third body rotation rate entry.Comment entry.Rotation direction entry (ADM V1 only).First reference frame entry (only for ADM V1).Second reference frame entry (only for ADM V1).Rotation sequence entry.Reference frame for rate entry (ADM V1 only).First reference frame entry.Second reference frame entry.Rotation angles wrapping element in XML files (ADM V1 only).Rotation rates wrapping element in XML files (ADM V1 only).X body rotation angle entry (ADM V1 only).X body rotation rate entry (ADM V1 only).Y body rotation angle entry (ADM V1 only).Y body rotation rate entry (ADM V1 only).Z body rotation angle entry (ADM V1 only).Z body rotation rate entry (ADM V1 only). -
Method Summary
Modifier and TypeMethodDescriptionbooleanprocess(ParseToken token, ContextBinding context, Euler container) Process one token.static EulerKeyReturns the enum constant of this class with the specified name.static EulerKey[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
rotationAngles
Rotation angles wrapping element in XML files (ADM V1 only). -
rotationRates
Rotation rates wrapping element in XML files (ADM V1 only). -
COMMENT
Comment entry. -
EULER_FRAME_A
First reference frame entry (only for ADM V1). -
REF_FRAME_A
First reference frame entry.- Since:
- 12.0
-
EULER_FRAME_B
Second reference frame entry (only for ADM V1). -
REF_FRAME_B
Second reference frame entry.- Since:
- 12.0
-
EULER_DIR
Rotation direction entry (ADM V1 only). -
EULER_ROT_SEQ
Rotation sequence entry. -
RATE_FRAME
Reference frame for rate entry (ADM V1 only). -
X_ANGLE
X body rotation angle entry (ADM V1 only). -
Y_ANGLE
Y body rotation angle entry (ADM V1 only). -
Z_ANGLE
Z body rotation angle entry (ADM V1 only). -
X_RATE
X body rotation rate entry (ADM V1 only). -
Y_RATE
Y body rotation rate entry (ADM V1 only). -
Z_RATE
Z body rotation rate entry (ADM V1 only). -
ANGLE_1
First body rotation angle entry.- Since:
- 12.0
-
ANGLE_2
Second body rotation angle entry.- Since:
- 12.0
-
ANGLE_3
Third body rotation angle entry.- Since:
- 12.0
-
ANGLE_1_DOT
First body rotation rate entry.- Since:
- 12.0
-
ANGLE_2_DOT
Second body rotation rate entry.- Since:
- 12.0
-
ANGLE_3_DOT
Third body rotation rate entry.- Since:
- 12.0
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
process
Process one token.- Parameters:
token- token to processcontext- context bindingcontainer- container to fill- Returns:
- true of token was accepted
-