Enum Class InertiaKey
- All Implemented Interfaces:
Serializable,Comparable<InertiaKey>,Constable
Keys for
inertia entries.- Since:
- 12.0
- Author:
- Luc Maisonobe
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionComment entry.Moment of inertia about X-axis (ADM V1 only).Inertia cross product of the X and Y axes (ADM V1 only).Inertia cross product of the X and Z axes (ADM V1 only).Moment of inertia about Y-axis (ADM V1 only).Inertia cross product of the Y and Z axes (ADM V1 only).Moment of inertia about Z-axis (ADM V1 only).Frame in which inertia is defined.Moment of inertia about X-axis.Inertia cross product of the X and Y axes.Inertia cross product of the X and Z axes.Moment of inertia about Y-axis.Inertia cross product of the Y and Z axes.Moment of inertia about Z-axis. -
Method Summary
Modifier and TypeMethodDescriptionbooleanprocess(ParseToken token, ContextBinding context, Inertia data) Process an token.static InertiaKeyReturns the enum constant of this class with the specified name.static InertiaKey[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
COMMENT
Comment entry. -
INERTIA_REF_FRAME
Frame in which inertia is defined. -
I11
Moment of inertia about X-axis (ADM V1 only). -
IXX
Moment of inertia about X-axis. -
I22
Moment of inertia about Y-axis (ADM V1 only). -
IYY
Moment of inertia about Y-axis. -
I33
Moment of inertia about Z-axis (ADM V1 only). -
IZZ
Moment of inertia about Z-axis. -
I12
Inertia cross product of the X and Y axes (ADM V1 only). -
IXY
Inertia cross product of the X and Y axes. -
I13
Inertia cross product of the X and Z axes (ADM V1 only). -
IXZ
Inertia cross product of the X and Z axes. -
I23
Inertia cross product of the Y and Z axes (ADM V1 only). -
IYZ
Inertia cross product of the Y and Z axes.
-
-
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 an token.- Parameters:
token- token to processcontext- context bindingdata- data to fill- Returns:
- true of token was accepted
-