Enum Class AttitudePhysicalPropertiesKey
java.lang.Object
java.lang.Enum<AttitudePhysicalPropertiesKey>
org.orekit.files.ccsds.ndm.adm.acm.AttitudePhysicalPropertiesKey
- All Implemented Interfaces:
Serializable,Comparable<AttitudePhysicalPropertiesKey>,Constable
Keys for
physical properties data 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.Center of pressure.Reference frame for center of pressure.Drag coefficient.Mass without propellant.Inertia reference frame.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.Total mass at T₀. -
Method Summary
Modifier and TypeMethodDescriptionbooleanprocess(ParseToken token, ContextBinding context, AttitudePhysicalProperties data) Process an token.Returns the enum constant of this class with the specified name.static AttitudePhysicalPropertiesKey[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
COMMENT
Comment entry. -
DRAG_COEFF
Drag coefficient. -
WET_MASS
Total mass at T₀. -
DRY_MASS
Mass without propellant. -
CP_REF_FRAME
Reference frame for center of pressure. -
CP
Center of pressure. -
INERTIA_REF_FRAME
Inertia reference frame. -
IXX
Moment of inertia about X-axis. -
IYY
Moment of inertia about Y-axis. -
IZZ
Moment of inertia about Z-axis. -
IXY
Inertia cross product of the X and Y axes. -
IXZ
Inertia cross product of the X and Z axes. -
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
-