Enum AutoMLAlgorithm
- java.lang.Object
-
- java.lang.Enum<AutoMLAlgorithm>
-
- software.amazon.awssdk.services.sagemaker.model.AutoMLAlgorithm
-
- All Implemented Interfaces:
Serializable
,Comparable<AutoMLAlgorithm>
@Generated("software.amazon.awssdk:codegen") public enum AutoMLAlgorithm extends Enum<AutoMLAlgorithm>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ARIMA
CATBOOST
CNN_QR
DEEPAR
ETS
EXTRA_TREES
FASTAI
LIGHTGBM
LINEAR_LEARNER
MLP
NN_TORCH
NPTS
PROPHET
RANDOMFOREST
UNKNOWN_TO_SDK_VERSION
XGBOOST
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
XGBOOST
public static final AutoMLAlgorithm XGBOOST
-
LINEAR_LEARNER
public static final AutoMLAlgorithm LINEAR_LEARNER
-
MLP
public static final AutoMLAlgorithm MLP
-
LIGHTGBM
public static final AutoMLAlgorithm LIGHTGBM
-
CATBOOST
public static final AutoMLAlgorithm CATBOOST
-
RANDOMFOREST
public static final AutoMLAlgorithm RANDOMFOREST
-
EXTRA_TREES
public static final AutoMLAlgorithm EXTRA_TREES
-
NN_TORCH
public static final AutoMLAlgorithm NN_TORCH
-
FASTAI
public static final AutoMLAlgorithm FASTAI
-
CNN_QR
public static final AutoMLAlgorithm CNN_QR
-
DEEPAR
public static final AutoMLAlgorithm DEEPAR
-
PROPHET
public static final AutoMLAlgorithm PROPHET
-
NPTS
public static final AutoMLAlgorithm NPTS
-
ARIMA
public static final AutoMLAlgorithm ARIMA
-
ETS
public static final AutoMLAlgorithm ETS
-
UNKNOWN_TO_SDK_VERSION
public static final AutoMLAlgorithm UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static AutoMLAlgorithm[] 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 (AutoMLAlgorithm c : AutoMLAlgorithm.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AutoMLAlgorithm 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
-
toString
public String toString()
- Overrides:
toString
in classEnum<AutoMLAlgorithm>
-
fromValue
public static AutoMLAlgorithm fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.- Parameters:
value
- real value- Returns:
- AutoMLAlgorithm corresponding to the value
-
knownValues
public static Set<AutoMLAlgorithm> knownValues()
Use this in place ofvalues()
to return aSet
of all values known to the SDK. This will return all known enum values exceptUNKNOWN_TO_SDK_VERSION
.- Returns:
- a
Set
of knownAutoMLAlgorithm
s
-
-