Package org.orekit.files.ccsds.ndm.odm
Enum Class CartesianCovarianceKey
- All Implemented Interfaces:
Serializable,Comparable<CartesianCovarianceKey>,Constable
Keys for
OPM/OMM/OCM Cartesian covariance entries.- Since:
- 11.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.Coordinate system for covariance matrix.Covariance matrix [4, 1] element.Covariance matrix [4, 4] element.Covariance matrix [4, 2] element.Covariance matrix [4, 3] element.Covariance matrix [1, 1] element.Covariance matrix [5, 1] element.Covariance matrix [5, 4] element.Covariance matrix [5, 2] element.Covariance matrix [5, 5] element.Covariance matrix [5, 3] element.Covariance matrix [2, 1] element.Covariance matrix [2, 2] element.Covariance matrix [6, 1] element.Covariance matrix [6, 4] element.Covariance matrix [6, 2] element.Covariance matrix [6, 5] element.Covariance matrix [6, 3] element.Covariance matrix [6, 6] element.Covariance matrix [3, 1] element.Covariance matrix [3, 2] element.Covariance matrix [3, 3] element.Epoch entry (only for OEM files). -
Method Summary
Modifier and TypeMethodDescriptionbooleanprocess(ParseToken token, ContextBinding context, CartesianCovariance container) Process one token.static CartesianCovarianceKeyReturns the enum constant of this class with the specified name.static CartesianCovarianceKey[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
COMMENT
Comment entry. -
EPOCH
Epoch entry (only for OEM files). -
COV_REF_FRAME
Coordinate system for covariance matrix. -
CX_X
Covariance matrix [1, 1] element. -
CY_X
Covariance matrix [2, 1] element. -
CY_Y
Covariance matrix [2, 2] element. -
CZ_X
Covariance matrix [3, 1] element. -
CZ_Y
Covariance matrix [3, 2] element. -
CZ_Z
Covariance matrix [3, 3] element. -
CX_DOT_X
Covariance matrix [4, 1] element. -
CX_DOT_Y
Covariance matrix [4, 2] element. -
CX_DOT_Z
Covariance matrix [4, 3] element. -
CX_DOT_X_DOT
Covariance matrix [4, 4] element. -
CY_DOT_X
Covariance matrix [5, 1] element. -
CY_DOT_Y
Covariance matrix [5, 2] element. -
CY_DOT_Z
Covariance matrix [5, 3] element. -
CY_DOT_X_DOT
Covariance matrix [5, 4] element. -
CY_DOT_Y_DOT
Covariance matrix [5, 5] element. -
CZ_DOT_X
Covariance matrix [6, 1] element. -
CZ_DOT_Y
Covariance matrix [6, 2] element. -
CZ_DOT_Z
Covariance matrix [6, 3] element. -
CZ_DOT_X_DOT
Covariance matrix [6, 4] element. -
CZ_DOT_Y_DOT
Covariance matrix [6, 5] element. -
CZ_DOT_Z_DOT
Covariance matrix [6, 6] element.
-
-
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
-