public static enum TimeSeries.InterpolationMethod extends Enum<TimeSeries.InterpolationMethod> implements StringValue<TimeSeries.InterpolationMethod>
| Enum Constant and Description |
|---|
CUBIC_SPLINE |
EXPONENTIAL_SPLINE |
LINEAR |
NONE |
| Modifier and Type | Method and Description |
|---|---|
static TimeSeries.InterpolationMethod |
fromValue(String v) |
String |
toString() |
String |
value() |
static TimeSeries.InterpolationMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TimeSeries.InterpolationMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TimeSeries.InterpolationMethod NONE
public static final TimeSeries.InterpolationMethod LINEAR
public static final TimeSeries.InterpolationMethod EXPONENTIAL_SPLINE
public static final TimeSeries.InterpolationMethod CUBIC_SPLINE
public static TimeSeries.InterpolationMethod[] values()
for (TimeSeries.InterpolationMethod c : TimeSeries.InterpolationMethod.values()) System.out.println(c);
public static TimeSeries.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 nullpublic String value()
value in interface StringValue<TimeSeries.InterpolationMethod>public static TimeSeries.InterpolationMethod fromValue(String v)
public String toString()
toString in class Enum<TimeSeries.InterpolationMethod>Copyright © 2022. All rights reserved.