Package org.orekit.files.ccsds.ndm.odm
Enum Class KeplerianElementsKey
- All Implemented Interfaces:
Serializable,Comparable<KeplerianElementsKey>,Constable
Keys for
Keplerian elements 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 ConstantDescriptionOrbit argument of pericenter.Comment entry.Orbit eccentricity.Epoch of Keplerian elements.Gravitational coefficient.Orbit inclination.Orbit mean anomaly.Mean motion.Orbit right ascension of ascending node.Orbit semi-major axis.Orbit true anomaly. -
Method Summary
Modifier and TypeMethodDescriptionbooleanprocess(ParseToken token, ContextBinding context, KeplerianElements container) Process one token.static KeplerianElementsKeyReturns the enum constant of this class with the specified name.static KeplerianElementsKey[]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 of Keplerian elements. -
SEMI_MAJOR_AXIS
Orbit semi-major axis. -
MEAN_MOTION
Mean motion. -
ECCENTRICITY
Orbit eccentricity. -
INCLINATION
Orbit inclination. -
RA_OF_ASC_NODE
Orbit right ascension of ascending node. -
ARG_OF_PERICENTER
Orbit argument of pericenter. -
TRUE_ANOMALY
Orbit true anomaly. -
MEAN_ANOMALY
Orbit mean anomaly. -
GM
Gravitational coefficient.
-
-
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
-