Enum AttitudeDeterminationKey
- java.lang.Object
-
- java.lang.Enum<AttitudeDeterminationKey>
-
- org.orekit.files.ccsds.ndm.adm.acm.AttitudeDeterminationKey
-
- All Implemented Interfaces:
Serializable
,Comparable<AttitudeDeterminationKey>
public enum AttitudeDeterminationKey extends Enum<AttitudeDeterminationKey>
Keys forattitude determination data
entries.- Since:
- 12.0
- Author:
- Luc Maisonobe
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AD_ID
Identification number.AD_METHOD
Attitude determination method.AD_PREV_ID
Identification of previous attitude determination.ATTITUDE_SOURCE
Source of attitude estimate.ATTITUDE_STATES
Attitude states.COMMENT
Comment entry.COV_TYPE
Type of attitude error state.EULER_ROT_SEQ
Rotation sequence entry.NUMBER_STATES
Number of states.RATE_PROCESS_NOISE_STDDEV
Process noise standard deviation ifRATE_STATES
isRateElementsType.ANGVEL
.RATE_STATES
Attitude rate states.REF_FRAME_A
Reference frame defining the starting point of the transformation.REF_FRAME_B
Reference frame defining the end point of the transformation.SENSOR
Sensor block sub-structure.SIGMA_U
Rate random walk ifRATE_STATES
isRateElementsType.GYRO_BIAS
.SIGMA_V
Angle random walk ifRATE_STATES
isRateElementsType.GYRO_BIAS
.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
process(ParseToken token, AcmParser parser, ContextBinding context, AttitudeDetermination container)
Process an token.static AttitudeDeterminationKey
valueOf(String name)
Returns the enum constant of this type with the specified name.static AttitudeDeterminationKey[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COMMENT
public static final AttitudeDeterminationKey COMMENT
Comment entry.
-
AD_ID
public static final AttitudeDeterminationKey AD_ID
Identification number.
-
AD_PREV_ID
public static final AttitudeDeterminationKey AD_PREV_ID
Identification of previous attitude determination.
-
AD_METHOD
public static final AttitudeDeterminationKey AD_METHOD
Attitude determination method.
-
ATTITUDE_SOURCE
public static final AttitudeDeterminationKey ATTITUDE_SOURCE
Source of attitude estimate.
-
EULER_ROT_SEQ
public static final AttitudeDeterminationKey EULER_ROT_SEQ
Rotation sequence entry.
-
NUMBER_STATES
public static final AttitudeDeterminationKey NUMBER_STATES
Number of states.
-
ATTITUDE_STATES
public static final AttitudeDeterminationKey ATTITUDE_STATES
Attitude states.
-
COV_TYPE
public static final AttitudeDeterminationKey COV_TYPE
Type of attitude error state.
-
REF_FRAME_A
public static final AttitudeDeterminationKey REF_FRAME_A
Reference frame defining the starting point of the transformation.
-
REF_FRAME_B
public static final AttitudeDeterminationKey REF_FRAME_B
Reference frame defining the end point of the transformation.
-
RATE_STATES
public static final AttitudeDeterminationKey RATE_STATES
Attitude rate states.
-
SIGMA_U
public static final AttitudeDeterminationKey SIGMA_U
Rate random walk ifRATE_STATES
isRateElementsType.GYRO_BIAS
.
-
SIGMA_V
public static final AttitudeDeterminationKey SIGMA_V
Angle random walk ifRATE_STATES
isRateElementsType.GYRO_BIAS
.
-
RATE_PROCESS_NOISE_STDDEV
public static final AttitudeDeterminationKey RATE_PROCESS_NOISE_STDDEV
Process noise standard deviation ifRATE_STATES
isRateElementsType.ANGVEL
.
-
SENSOR
public static final AttitudeDeterminationKey SENSOR
Sensor block sub-structure.
-
-
Method Detail
-
values
public static AttitudeDeterminationKey[] 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 (AttitudeDeterminationKey c : AttitudeDeterminationKey.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AttitudeDeterminationKey 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, AcmParser parser, ContextBinding context, AttitudeDetermination container)
Process an token.- Parameters:
token
- token to processparser
- ACM file parsercontext
- context bindingcontainer
- container to fill- Returns:
- true of token was accepted
-
-