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