public static enum TimeSeries.InterpolationMethod extends Enum<TimeSeries.InterpolationMethod>
Java class for null.
The following schema fragment specifies the expected content contained within this class.
<simpleType>
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="none"/>
<enumeration value="linear"/>
<enumeration value="exponentialSpline"/>
<enumeration value="cubicSpline"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CUBIC_SPLINE |
EXPONENTIAL_SPLINE |
LINEAR |
NONE |
| Modifier and Type | Method and Description |
|---|---|
static TimeSeries.InterpolationMethod |
fromValue(String v) |
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()
public static TimeSeries.InterpolationMethod fromValue(String v)
Copyright © 2016 University of Tartu. All rights reserved.