|
Kieker 1.11 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<ForecastMethod> kieker.tools.opad.timeseries.ForecastMethod
public enum ForecastMethod
Method Summary | |
---|---|
IAnomalyScoreCalculator<java.lang.Double> |
getAnomalyScoreCalculator()
|
IForecaster<java.lang.Double> |
getForecaster(ITimeSeries<java.lang.Double> history)
|
IForecaster<java.lang.Double> |
getForecaster(ITimeSeries<java.lang.Double> history,
int alpha)
|
static ForecastMethod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ForecastMethod[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ForecastMethod ARIMA
ARIMAForecaster
public static final ForecastMethod ARIMA101
ARIMA101Forecaster
public static final ForecastMethod CROSTON
CrostonForecaster
public static final ForecastMethod CS
CSForecaster
public static final ForecastMethod ETS
ETSForecaster
public static final ForecastMethod MEAN
MeanForecaster
public static final ForecastMethod MEANJAVA
MeanForecasterJava
public static final ForecastMethod NAIVE
NaiveForecaster
public static final ForecastMethod SES
SESRForecaster
Method Detail |
---|
public static ForecastMethod[] values()
for (ForecastMethod c : ForecastMethod.values()) System.out.println(c);
public static ForecastMethod valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is nullpublic IForecaster<java.lang.Double> getForecaster(ITimeSeries<java.lang.Double> history) throws java.lang.IllegalArgumentException
history
- Timeseries which will be forecasted
java.lang.IllegalArgumentException
- if forecaster not instantiable or not defined.public IForecaster<java.lang.Double> getForecaster(ITimeSeries<java.lang.Double> history, int alpha) throws java.lang.IllegalArgumentException
history
- Timeseries which will be forecastedalpha
- confidence level
java.lang.IllegalArgumentException
- if forecaster not instantiable or not defined.public IAnomalyScoreCalculator<java.lang.Double> getAnomalyScoreCalculator()
|
Kieker 1.11 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |