public static enum TimeSeriesModel.Algorithm extends Enum<TimeSeriesModel.Algorithm> implements StringValue<TimeSeriesModel.Algorithm>
| Enum Constant and Description |
|---|
ARIMA |
EXPONENTIAL_SMOOTHING |
GARCH |
SEASONAL_TREND_DECOMPOSITION |
SPECTRAL_ANALYSIS |
STATE_SPACE_MODEL |
| Modifier and Type | Method and Description |
|---|---|
static TimeSeriesModel.Algorithm |
fromValue(String v) |
String |
toString() |
String |
value() |
static TimeSeriesModel.Algorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TimeSeriesModel.Algorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TimeSeriesModel.Algorithm ARIMA
public static final TimeSeriesModel.Algorithm EXPONENTIAL_SMOOTHING
public static final TimeSeriesModel.Algorithm SEASONAL_TREND_DECOMPOSITION
public static final TimeSeriesModel.Algorithm SPECTRAL_ANALYSIS
public static final TimeSeriesModel.Algorithm STATE_SPACE_MODEL
public static final TimeSeriesModel.Algorithm GARCH
public static TimeSeriesModel.Algorithm[] values()
for (TimeSeriesModel.Algorithm c : TimeSeriesModel.Algorithm.values()) System.out.println(c);
public static TimeSeriesModel.Algorithm 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<TimeSeriesModel.Algorithm>public static TimeSeriesModel.Algorithm fromValue(String v)
public String toString()
toString in class Enum<TimeSeriesModel.Algorithm>Copyright © 2024. All rights reserved.