Enum Class ManeuverKey
- All Implemented Interfaces:
Serializable,Comparable<ManeuverKey>,Constable
Keys for
OPM maneuver 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.Mass change during maneuver (value is < 0).Maneuver duration (0 for impulsive maneuvers).First component of the velocity increment.Second component of the velocity increment.Third component of the velocity increment.Epoch of ignition.Coordinate system for velocity increment vector. -
Method Summary
Modifier and TypeMethodDescriptionbooleanprocess(ParseToken token, ContextBinding context, Maneuver container) Process one token.static ManeuverKeyReturns the enum constant of this class with the specified name.static ManeuverKey[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
COMMENT
Comment entry. -
MAN_EPOCH_IGNITION
Epoch of ignition. -
MAN_REF_FRAME
Coordinate system for velocity increment vector. -
MAN_DURATION
Maneuver duration (0 for impulsive maneuvers). -
MAN_DELTA_MASS
Mass change during maneuver (value is < 0). -
MAN_DV_1
First component of the velocity increment. -
MAN_DV_2
Second component of the velocity increment. -
MAN_DV_3
Third component of the velocity increment.
-
-
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
-