public enum EOPInterpolators extends Enum<EOPInterpolators>
Enum Constant and Description |
---|
HERMITE
Hermite interpolator.
|
LAGRANGE4
Fourth order Lagrange polynomial interpolator.
|
LINEAR
Linear interpolator.
|
Modifier and Type | Method and Description |
---|---|
static EOPInterpolators |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EOPInterpolators[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EOPInterpolators HERMITE
public static final EOPInterpolators LAGRANGE4
public static final EOPInterpolators LINEAR
public static EOPInterpolators[] values()
for (EOPInterpolators c : EOPInterpolators.values()) System.out.println(c);
public static EOPInterpolators 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 nullCopyright © 2021 CNES. All rights reserved.