Enum DetailsAttributes
- java.lang.Object
-
- java.lang.Enum<DetailsAttributes>
-
- com.amazonaws.services.machinelearning.model.DetailsAttributes
-
- All Implemented Interfaces:
Serializable
,Comparable<DetailsAttributes>
public enum DetailsAttributes extends Enum<DetailsAttributes>
Contains the key values ofDetailsMap
: PredictiveModelType - Indicates the type of theMLModel
. Algorithm - Indicates the algorithm was used for theMLModel
.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Algorithm
PredictiveModelType
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
PredictiveModelType
public static final DetailsAttributes PredictiveModelType
-
Algorithm
public static final DetailsAttributes Algorithm
-
-
Method Detail
-
values
public static DetailsAttributes[] 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 (DetailsAttributes c : DetailsAttributes.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DetailsAttributes 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<DetailsAttributes>
-
fromValue
public static DetailsAttributes fromValue(String value)
Use this in place of valueOf.- Parameters:
value
- real value- Returns:
- DetailsAttributes corresponding to the value
-
-