public enum CovarianceReadOptions extends Enum<CovarianceReadOptions> implements Enumeration
Enum Constant and Description |
---|
DO_NOT_READ_COVARIANCE
Instructs the reader to ignore any Covariance that exists.
|
READ_ALL_FILE_COVARIANCE
Instructs the reader to read in the format of covariance data specified in the ephemeris file.
|
READ_ONLY_POSITION_COVARIANCE
Instructs the reader to ignore velocity covariance data if it exists in the ephemeris file,
and instead only read the position terms.
|
Modifier and Type | Method and Description |
---|---|
static CovarianceReadOptions |
getDefault()
Get the enum constant that is considered to be the default.
|
static CovarianceReadOptions |
getFromValue(int value)
Get the enum constant that is associated with the given numeric value.
|
int |
getValue()
Get the numeric value associated with this enum constant.
|
static CovarianceReadOptions |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CovarianceReadOptions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CovarianceReadOptions DO_NOT_READ_COVARIANCE
public static final CovarianceReadOptions READ_ONLY_POSITION_COVARIANCE
public static final CovarianceReadOptions READ_ALL_FILE_COVARIANCE
public static CovarianceReadOptions[] values()
for (CovarianceReadOptions c : CovarianceReadOptions.values()) System.out.println(c);
public static CovarianceReadOptions valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic int getValue()
getValue
in interface Enumeration
@Nonnull public static CovarianceReadOptions getFromValue(int value)
value
- a numeric value.@Nonnull public static CovarianceReadOptions getDefault()