Enum AttitudeManeuverKey
- java.lang.Object
-
- java.lang.Enum<AttitudeManeuverKey>
-
- org.orekit.files.ccsds.ndm.adm.acm.AttitudeManeuverKey
-
- All Implemented Interfaces:
Serializable
,Comparable<AttitudeManeuverKey>
public enum AttitudeManeuverKey extends Enum<AttitudeManeuverKey>
Keys forattitude maneuver
entries.- Since:
- 12.0
- Author:
- Luc Maisonobe
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTUATOR_USED
Actuator used.COMMENT
Comment entry.MAN_BEGIN_TIME
Start time of actual maneuver, relative to t₀.MAN_DURATION
Duration.MAN_END_TIME
End time of actual maneuver, relative to t₀.MAN_ID
Maneuver identification number.MAN_PREV_ID
Identification number of previous maneuver.MAN_PURPOSE
Purpose of the maneuver.TARGET_ATTITUDE
Target attitude.TARGET_MOM_FRAME
Target momentum frame.TARGET_MOMENTUM
Target momentum.TARGET_SPINRATE
Target spin rate.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
process(ParseToken token, ContextBinding context, AttitudeManeuver data)
Process an token.static AttitudeManeuverKey
valueOf(String name)
Returns the enum constant of this type with the specified name.static AttitudeManeuverKey[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COMMENT
public static final AttitudeManeuverKey COMMENT
Comment entry.
-
MAN_ID
public static final AttitudeManeuverKey MAN_ID
Maneuver identification number.
-
MAN_PREV_ID
public static final AttitudeManeuverKey MAN_PREV_ID
Identification number of previous maneuver.
-
MAN_PURPOSE
public static final AttitudeManeuverKey MAN_PURPOSE
Purpose of the maneuver.
-
MAN_BEGIN_TIME
public static final AttitudeManeuverKey MAN_BEGIN_TIME
Start time of actual maneuver, relative to t₀.
-
MAN_END_TIME
public static final AttitudeManeuverKey MAN_END_TIME
End time of actual maneuver, relative to t₀.
-
MAN_DURATION
public static final AttitudeManeuverKey MAN_DURATION
Duration.
-
ACTUATOR_USED
public static final AttitudeManeuverKey ACTUATOR_USED
Actuator used.
-
TARGET_MOMENTUM
public static final AttitudeManeuverKey TARGET_MOMENTUM
Target momentum.
-
TARGET_MOM_FRAME
public static final AttitudeManeuverKey TARGET_MOM_FRAME
Target momentum frame.
-
TARGET_ATTITUDE
public static final AttitudeManeuverKey TARGET_ATTITUDE
Target attitude.
-
TARGET_SPINRATE
public static final AttitudeManeuverKey TARGET_SPINRATE
Target spin rate.
-
-
Method Detail
-
values
public static AttitudeManeuverKey[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AttitudeManeuverKey c : AttitudeManeuverKey.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AttitudeManeuverKey valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
process
public boolean process(ParseToken token, ContextBinding context, AttitudeManeuver data)
Process an token.- Parameters:
token
- token to processcontext
- context bindingdata
- data to fill- Returns:
- true of token was accepted
-
-