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