public enum InterpolationTarget extends Enum<InterpolationTarget>
Enum Constant and Description |
---|
FirstDerivatives
Instructs the interpolator to compute a value and the first
derivatives.
|
SecondDerivatives
Instructs the interpolator to compute a value and the first and
second derivatives.
|
Value
Instructs the interpolator to compute a value, but no derivatives.
|
Modifier and Type | Method and Description |
---|---|
static InterpolationTarget |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InterpolationTarget[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InterpolationTarget Value
public static final InterpolationTarget FirstDerivatives
public static final InterpolationTarget SecondDerivatives
public static InterpolationTarget[] values()
for (InterpolationTarget c : InterpolationTarget.values()) System.out.println(c);
public static InterpolationTarget 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 © 2022. All rights reserved.