public enum EOPInterpolators extends Enum<EOPInterpolators>
Enum Constant and Description |
---|
LAGRANGE4
Fourth order Lagrange polynomial interpolator.
|
LINEAR
Linear interpolator.
|
Modifier and Type | Method and Description |
---|---|
abstract int |
getInterpolationPoints()
Return the number of points to use in interpolation.
|
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 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 nullpublic abstract int getInterpolationPoints()
Copyright © 2023 CNES. All rights reserved.