public static enum CurveInterpolation.InterpolationEntity extends Enum<CurveInterpolation.InterpolationEntity>
| Enum Constant and Description |
|---|
LOG_OF_VALUE
Interpolation is performed on the log of the point values, i.e. log(value(t))
|
LOG_OF_VALUE_PER_TIME
Interpolation is performed on the log of the point values divided by their respective time, i.e. log(value(t))/t
|
VALUE
Interpolation is performed on the native point values, i.e. value(t)
|
| Modifier and Type | Method and Description |
|---|---|
static CurveInterpolation.InterpolationEntity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CurveInterpolation.InterpolationEntity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CurveInterpolation.InterpolationEntity VALUE
public static final CurveInterpolation.InterpolationEntity LOG_OF_VALUE
public static final CurveInterpolation.InterpolationEntity LOG_OF_VALUE_PER_TIME
public static CurveInterpolation.InterpolationEntity[] values()
for (CurveInterpolation.InterpolationEntity c : CurveInterpolation.InterpolationEntity.values()) System.out.println(c);
public static CurveInterpolation.InterpolationEntity 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 © 2019. All rights reserved.