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