public enum InterpolationMethod extends Enum<InterpolationMethod>
| Enum Constant and Description |
|---|
HERMITE
Hermite interpolation.
|
LAGRANGE
Lagrange interpolation.
|
LINEAR
Linear interpolation.
|
PROPAGATE
Propagation.
|
| Modifier and Type | Method and 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.
|
public static final InterpolationMethod HERMITE
public static final InterpolationMethod LAGRANGE
public static final InterpolationMethod LINEAR
public static final InterpolationMethod PROPAGATE
public static InterpolationMethod[] values()
for (InterpolationMethod c : InterpolationMethod.values()) System.out.println(c);
public static InterpolationMethod 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 © 2002-2023 CS GROUP. All rights reserved.