@Generated(value="software.amazon.awssdk:codegen") public enum AutoMLAlgorithm extends Enum<AutoMLAlgorithm>
| Enum Constant and Description | 
|---|
| CATBOOST | 
| EXTRA_TREES | 
| FASTAI | 
| LIGHTGBM | 
| LINEAR_LEARNER | 
| MLP | 
| NN_TORCH | 
| RANDOMFOREST | 
| UNKNOWN_TO_SDK_VERSION | 
| XGBOOST | 
| Modifier and Type | Method and Description | 
|---|---|
| static AutoMLAlgorithm | fromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value. | 
| static Set<AutoMLAlgorithm> | knownValues() | 
| String | toString() | 
| static AutoMLAlgorithm | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static AutoMLAlgorithm[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final AutoMLAlgorithm XGBOOST
public static final AutoMLAlgorithm LINEAR_LEARNER
public static final AutoMLAlgorithm MLP
public static final AutoMLAlgorithm LIGHTGBM
public static final AutoMLAlgorithm CATBOOST
public static final AutoMLAlgorithm RANDOMFOREST
public static final AutoMLAlgorithm EXTRA_TREES
public static final AutoMLAlgorithm NN_TORCH
public static final AutoMLAlgorithm FASTAI
public static final AutoMLAlgorithm UNKNOWN_TO_SDK_VERSION
public static AutoMLAlgorithm[] values()
for (AutoMLAlgorithm c : AutoMLAlgorithm.values()) System.out.println(c);
public static AutoMLAlgorithm 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 toString()
toString in class Enum<AutoMLAlgorithm>public static AutoMLAlgorithm fromValue(String value)
value - real valuepublic static Set<AutoMLAlgorithm> knownValues()
values() to return a Set of all values known to the SDK. This will return
 all known enum values except UNKNOWN_TO_SDK_VERSION.Set of known AutoMLAlgorithmsCopyright © 2023. All rights reserved.