Package com.oracle.bmc.opsi.requests
Enum SummarizeDatabaseInsightResourceForecastTrendRequest.ForecastModel
- java.lang.Object
-
- java.lang.Enum<SummarizeDatabaseInsightResourceForecastTrendRequest.ForecastModel>
-
- com.oracle.bmc.opsi.requests.SummarizeDatabaseInsightResourceForecastTrendRequest.ForecastModel
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<SummarizeDatabaseInsightResourceForecastTrendRequest.ForecastModel>
- Enclosing class:
- SummarizeDatabaseInsightResourceForecastTrendRequest
public static enum SummarizeDatabaseInsightResourceForecastTrendRequest.ForecastModel extends Enum<SummarizeDatabaseInsightResourceForecastTrendRequest.ForecastModel> implements BmcEnum
Choose algorithm model for the forecasting.Possible values: - LINEAR: Uses linear regression algorithm for forecasting. - ML_AUTO: Automatically detects best algorithm to use for forecasting. - ML_NO_AUTO: Automatically detects seasonality of the data for forecasting using linear or seasonal algorithm.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SummarizeDatabaseInsightResourceForecastTrendRequest.ForecastModel
create(String key)
String
getValue()
static SummarizeDatabaseInsightResourceForecastTrendRequest.ForecastModel
valueOf(String name)
Returns the enum constant of this type with the specified name.static SummarizeDatabaseInsightResourceForecastTrendRequest.ForecastModel[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Linear
public static final SummarizeDatabaseInsightResourceForecastTrendRequest.ForecastModel Linear
-
MlAuto
public static final SummarizeDatabaseInsightResourceForecastTrendRequest.ForecastModel MlAuto
-
MlNoAuto
public static final SummarizeDatabaseInsightResourceForecastTrendRequest.ForecastModel MlNoAuto
-
-
Method Detail
-
values
public static SummarizeDatabaseInsightResourceForecastTrendRequest.ForecastModel[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SummarizeDatabaseInsightResourceForecastTrendRequest.ForecastModel c : SummarizeDatabaseInsightResourceForecastTrendRequest.ForecastModel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SummarizeDatabaseInsightResourceForecastTrendRequest.ForecastModel valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
create
public static SummarizeDatabaseInsightResourceForecastTrendRequest.ForecastModel create(String key)
-
-