Package com.oracle.bmc.opsi.requests
Enum SummarizeExadataInsightResourceForecastTrendAggregatedRequest.ForecastModel
- java.lang.Object
- 
- java.lang.Enum<SummarizeExadataInsightResourceForecastTrendAggregatedRequest.ForecastModel>
- 
- com.oracle.bmc.opsi.requests.SummarizeExadataInsightResourceForecastTrendAggregatedRequest.ForecastModel
 
 
- 
- All Implemented Interfaces:
- BmcEnum,- Serializable,- Comparable<SummarizeExadataInsightResourceForecastTrendAggregatedRequest.ForecastModel>
 - Enclosing class:
- SummarizeExadataInsightResourceForecastTrendAggregatedRequest
 
 public static enum SummarizeExadataInsightResourceForecastTrendAggregatedRequest.ForecastModel extends Enum<SummarizeExadataInsightResourceForecastTrendAggregatedRequest.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 SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SummarizeExadataInsightResourceForecastTrendAggregatedRequest.ForecastModelcreate(String key)StringgetValue()static SummarizeExadataInsightResourceForecastTrendAggregatedRequest.ForecastModelvalueOf(String name)Returns the enum constant of this type with the specified name.static SummarizeExadataInsightResourceForecastTrendAggregatedRequest.ForecastModel[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
Linearpublic static final SummarizeExadataInsightResourceForecastTrendAggregatedRequest.ForecastModel Linear 
 - 
MlAutopublic static final SummarizeExadataInsightResourceForecastTrendAggregatedRequest.ForecastModel MlAuto 
 - 
MlNoAutopublic static final SummarizeExadataInsightResourceForecastTrendAggregatedRequest.ForecastModel MlNoAuto 
 
- 
 - 
Method Detail- 
valuespublic static SummarizeExadataInsightResourceForecastTrendAggregatedRequest.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 (SummarizeExadataInsightResourceForecastTrendAggregatedRequest.ForecastModel c : SummarizeExadataInsightResourceForecastTrendAggregatedRequest.ForecastModel.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static SummarizeExadataInsightResourceForecastTrendAggregatedRequest.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 name
- NullPointerException- if the argument is null
 
 - 
createpublic static SummarizeExadataInsightResourceForecastTrendAggregatedRequest.ForecastModel create(String key) 
 
- 
 
-