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