public enum CubicInterpolationMode extends Enum<CubicInterpolationMode> implements Key
Enum Constant and Description |
---|
DEFAULT
The 'default' algorithm uses a custom weighted cubic interpolation, which produces pleasant curves for all types of datasets.
Default. |
MONOTONE
The 'monotone' algorithm is more suited to datasets: it preserves monotonicity (or piecewise monotonicity) of the dataset being interpolated, and ensures local extremums (if
any) stay at input data points.
|
Modifier and Type | Method and Description |
---|---|
String |
value()
Returns the name value of property
|
static CubicInterpolationMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CubicInterpolationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
checkAndGetIfValid, checkIfValid, compare, create, equals, getKeyByValue, getKeyByValue, hasKeyByValue, isValid
public static final CubicInterpolationMode DEFAULT
public static final CubicInterpolationMode MONOTONE
public static CubicInterpolationMode[] values()
for (CubicInterpolationMode c : CubicInterpolationMode.values()) System.out.println(c);
public static CubicInterpolationMode 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 null