public enum DeleteSnapshotsOptionType extends Enum<DeleteSnapshotsOptionType>
| Enum Constant and Description |
|---|
INCLUDE
Enum value include.
|
ONLY
Enum value only.
|
| Modifier and Type | Method and Description |
|---|---|
static DeleteSnapshotsOptionType |
fromString(String value)
Parses a serialized value to a DeleteSnapshotsOptionType instance.
|
String |
toString() |
static DeleteSnapshotsOptionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeleteSnapshotsOptionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeleteSnapshotsOptionType INCLUDE
public static final DeleteSnapshotsOptionType ONLY
public static DeleteSnapshotsOptionType[] values()
for (DeleteSnapshotsOptionType c : DeleteSnapshotsOptionType.values()) System.out.println(c);
public static DeleteSnapshotsOptionType 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 static DeleteSnapshotsOptionType fromString(String value)
value - the serialized value to parse.public String toString()
toString in class Enum<DeleteSnapshotsOptionType>This documentation was released into the public domain.