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