Enum Class AttitudeManeuverKey
- All Implemented Interfaces:
Serializable,Comparable<AttitudeManeuverKey>,Constable
Keys for
attitude maneuver 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 ConstantDescriptionActuator used.Comment entry.Start time of actual maneuver, relative to t₀.Duration.End time of actual maneuver, relative to t₀.Maneuver identification number.Identification number of previous maneuver.Purpose of the maneuver.Target attitude.Target momentum frame.Target momentum.Target spin rate. -
Method Summary
Modifier and TypeMethodDescriptionbooleanprocess(ParseToken token, ContextBinding context, AttitudeManeuver data) Process an token.static AttitudeManeuverKeyReturns the enum constant of this class with the specified name.static AttitudeManeuverKey[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
COMMENT
Comment entry. -
MAN_ID
Maneuver identification number. -
MAN_PREV_ID
Identification number of previous maneuver. -
MAN_PURPOSE
Purpose of the maneuver. -
MAN_BEGIN_TIME
Start time of actual maneuver, relative to t₀. -
MAN_END_TIME
End time of actual maneuver, relative to t₀. -
MAN_DURATION
Duration. -
ACTUATOR_USED
Actuator used. -
TARGET_MOMENTUM
Target momentum. -
TARGET_MOM_FRAME
Target momentum frame. -
TARGET_ATTITUDE
Target attitude. -
TARGET_SPINRATE
Target spin rate.
-
-
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
-