Enum AttitudeCovarianceType
- java.lang.Object
-
- java.lang.Enum<AttitudeCovarianceType>
-
- org.orekit.files.ccsds.ndm.adm.acm.AttitudeCovarianceType
-
- All Implemented Interfaces:
Serializable
,Comparable<AttitudeCovarianceType>
public enum AttitudeCovarianceType extends Enum<AttitudeCovarianceType>
Attitude covariance set type used in CCSDSAttitude Comprehensive Messages
.- Since:
- 12.0
- Author:
- Luc Maisonobe
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANGLE
Angles.ANGLE_ANGVEL
Angles and angular velocities.ANGLE_GYROBIAS
Angles and gyro biases.QUATERNION
Quaternion.QUATERNION_ANGVEL
Quaternion and angular velocities.QUATERNION_GYROBIAS
Quaternion and gyro biases.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Unit>
getUnits()
Get the elements units.static AttitudeCovarianceType
valueOf(String name)
Returns the enum constant of this type with the specified name.static AttitudeCovarianceType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ANGLE
public static final AttitudeCovarianceType ANGLE
Angles.
-
ANGLE_GYROBIAS
public static final AttitudeCovarianceType ANGLE_GYROBIAS
Angles and gyro biases.
-
ANGLE_ANGVEL
public static final AttitudeCovarianceType ANGLE_ANGVEL
Angles and angular velocities.
-
QUATERNION
public static final AttitudeCovarianceType QUATERNION
Quaternion.
-
QUATERNION_GYROBIAS
public static final AttitudeCovarianceType QUATERNION_GYROBIAS
Quaternion and gyro biases.
-
QUATERNION_ANGVEL
public static final AttitudeCovarianceType QUATERNION_ANGVEL
Quaternion and angular velocities.
-
-
Method Detail
-
values
public static AttitudeCovarianceType[] 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 (AttitudeCovarianceType c : AttitudeCovarianceType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AttitudeCovarianceType 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
-
-