public enum Model extends Enum<Model>
| Enum Constant and Description |
|---|
DoubleExponentialSmoothing |
SimpleExponentialSmoothing |
TripleExponentialSmoothing |
| Modifier and Type | Method and Description |
|---|---|
Class<? extends TimeSeriesModel> |
getModel() |
Class<? extends ModelOptimizer> |
getOptimizer() |
boolean |
isOptimizedBy(ModelOptimizer optimizer) |
static Model |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Model[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Model SimpleExponentialSmoothing
public static final Model DoubleExponentialSmoothing
public static final Model TripleExponentialSmoothing
public static Model[] values()
for (Model c : Model.values()) System.out.println(c);
public static Model 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 boolean isOptimizedBy(ModelOptimizer optimizer)
public Class<? extends TimeSeriesModel> getModel()
public Class<? extends ModelOptimizer> getOptimizer()
Copyright © 2015–2016 Red Hat, Inc.. All rights reserved.