Enum AttitudeStateHistoryMetadataKey
- java.lang.Object
-
- java.lang.Enum<AttitudeStateHistoryMetadataKey>
-
- org.orekit.files.ccsds.ndm.adm.acm.AttitudeStateHistoryMetadataKey
-
- All Implemented Interfaces:
Serializable
,Comparable<AttitudeStateHistoryMetadataKey>
public enum AttitudeStateHistoryMetadataKey extends Enum<AttitudeStateHistoryMetadataKey>
Keys forattitude state history container
entries.- Since:
- 12.0
- Author:
- Luc Maisonobe
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ATT_BASIS
Basis of this attitude state time history data.ATT_BASIS_ID
Identification number of the attitude determination or simulation upon which this attitude is based.ATT_ID
Attitude identification number.ATT_PREV_ID
Identification number of previous attitude.ATT_TYPE
Attitude element set type.COMMENT
Comment entry.EULER_ROT_SEQ
Rotation sequence entry.NUMBER_STATES
Number of data states included.RATE_TYPE
Attitude rate element set type.REF_FRAME_A
Reference frame defining the starting point of the transformation.REF_FRAME_B
Reference frame defining the end point of the transformation.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
process(ParseToken token, ContextBinding context, AttitudeStateHistoryMetadata container)
Process an token.static AttitudeStateHistoryMetadataKey
valueOf(String name)
Returns the enum constant of this type with the specified name.static AttitudeStateHistoryMetadataKey[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COMMENT
public static final AttitudeStateHistoryMetadataKey COMMENT
Comment entry.
-
ATT_ID
public static final AttitudeStateHistoryMetadataKey ATT_ID
Attitude identification number.
-
ATT_PREV_ID
public static final AttitudeStateHistoryMetadataKey ATT_PREV_ID
Identification number of previous attitude.
-
ATT_BASIS
public static final AttitudeStateHistoryMetadataKey ATT_BASIS
Basis of this attitude state time history data.
-
ATT_BASIS_ID
public static final AttitudeStateHistoryMetadataKey ATT_BASIS_ID
Identification number of the attitude determination or simulation upon which this attitude is based.
-
REF_FRAME_A
public static final AttitudeStateHistoryMetadataKey REF_FRAME_A
Reference frame defining the starting point of the transformation.
-
REF_FRAME_B
public static final AttitudeStateHistoryMetadataKey REF_FRAME_B
Reference frame defining the end point of the transformation.
-
EULER_ROT_SEQ
public static final AttitudeStateHistoryMetadataKey EULER_ROT_SEQ
Rotation sequence entry.
-
NUMBER_STATES
public static final AttitudeStateHistoryMetadataKey NUMBER_STATES
Number of data states included.
-
ATT_TYPE
public static final AttitudeStateHistoryMetadataKey ATT_TYPE
Attitude element set type.- See Also:
AttitudeElementsType
-
RATE_TYPE
public static final AttitudeStateHistoryMetadataKey RATE_TYPE
Attitude rate element set type.- See Also:
RateElementsType
-
-
Method Detail
-
values
public static AttitudeStateHistoryMetadataKey[] 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 (AttitudeStateHistoryMetadataKey c : AttitudeStateHistoryMetadataKey.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AttitudeStateHistoryMetadataKey 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, AttitudeStateHistoryMetadata container)
Process an token.- Parameters:
token
- token to processcontext
- context bindingcontainer
- container to fill- Returns:
- true of token was accepted
-
-