Enum InterpolationMethod
- java.lang.Object
-
- java.lang.Enum<InterpolationMethod>
-
- org.orekit.files.ccsds.ndm.odm.oem.InterpolationMethod
-
- All Implemented Interfaces:
Serializable
,Comparable<InterpolationMethod>
public enum InterpolationMethod extends Enum<InterpolationMethod>
OEM interpolation method.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static InterpolationMethod
valueOf(String name)
Returns the enum constant of this type with the specified name.static InterpolationMethod[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HERMITE
public static final InterpolationMethod HERMITE
Hermite interpolation.
-
LAGRANGE
public static final InterpolationMethod LAGRANGE
Lagrange interpolation.
-
LINEAR
public static final InterpolationMethod LINEAR
Linear interpolation.
-
PROPAGATE
public static final InterpolationMethod PROPAGATE
Propagation.
-
-
Method Detail
-
values
public static InterpolationMethod[] 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 (InterpolationMethod c : InterpolationMethod.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InterpolationMethod 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
-
-