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