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