Package org.orekit.files.ccsds.ndm.cdm
Enum AltCovarianceType
- java.lang.Object
-
- java.lang.Enum<AltCovarianceType>
-
- org.orekit.files.ccsds.ndm.cdm.AltCovarianceType
-
- All Implemented Interfaces:
Serializable
,Comparable<AltCovarianceType>
public enum AltCovarianceType extends Enum<AltCovarianceType>
Flag indicating the type of alternate covariance information provided.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CSIG3EIGVEC3
Sigma/Eigenvector Format.XYZ
Lower Triangular Format, specified in XYZ frame.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AltCovarianceType
valueOf(String name)
Returns the enum constant of this type with the specified name.static AltCovarianceType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
XYZ
public static final AltCovarianceType XYZ
Lower Triangular Format, specified in XYZ frame.
-
CSIG3EIGVEC3
public static final AltCovarianceType CSIG3EIGVEC3
Sigma/Eigenvector Format.
-
-
Method Detail
-
values
public static AltCovarianceType[] 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 (AltCovarianceType c : AltCovarianceType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AltCovarianceType 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
-
-