public enum CcsdsInterpolationMethod extends Enum<CcsdsInterpolationMethod> implements Enumeration
Enum Constant and Description |
---|
HERMITE
Hermite interpolation should be used to process the ephemeris data of the OEM.
|
LAGRANGE
Lagrange interpolation should be used to process the ephemeris data of the OEM.
|
LINEAR
Linear interpolation should be used to process the ephemeris data of the OEM.
|
UNKNOWN
The interpolation method was not provided, or it cannot be easily inferred from the available
CCSDS data.
|
Modifier and Type | Method and Description |
---|---|
static CcsdsInterpolationMethod |
getDefault()
Get the enum constant that is considered to be the default.
|
static CcsdsInterpolationMethod |
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 CcsdsInterpolationMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CcsdsInterpolationMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CcsdsInterpolationMethod UNKNOWN
public static final CcsdsInterpolationMethod LINEAR
public static final CcsdsInterpolationMethod LAGRANGE
public static final CcsdsInterpolationMethod HERMITE
public static CcsdsInterpolationMethod[] values()
for (CcsdsInterpolationMethod c : CcsdsInterpolationMethod.values()) System.out.println(c);
public static CcsdsInterpolationMethod 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 CcsdsInterpolationMethod getFromValue(int value)
value
- a numeric value.@Nonnull public static CcsdsInterpolationMethod getDefault()