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