@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum DetailsAttributes extends Enum<DetailsAttributes>
Contains the key values of DetailsMap:
PredictiveModelType - Indicates the type of the MLModel.
Algorithm - Indicates the algorithm that was used for the MLModel.
| Enum Constant and Description |
|---|
Algorithm |
PredictiveModelType |
| Modifier and Type | Method and Description |
|---|---|
static DetailsAttributes |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static DetailsAttributes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DetailsAttributes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DetailsAttributes PredictiveModelType
public static final DetailsAttributes Algorithm
public static DetailsAttributes[] values()
for (DetailsAttributes c : DetailsAttributes.values()) System.out.println(c);
public static DetailsAttributes 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<DetailsAttributes>public static DetailsAttributes fromValue(String value)
value - real valueIllegalArgumentException - If the specified value does not map to one of the known values in this enum.