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