public enum DeleteSnapshotsOption extends Enum<DeleteSnapshotsOption>
| Enum Constant and Description | 
|---|
DELETE_SNAPSHOTS_ONLY
Specifies deleting only the blob's snapshots. 
 | 
INCLUDE_SNAPSHOTS
Specifies deleting the blob and its snapshots. 
 | 
NONE
Specifies deleting the blob only. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static DeleteSnapshotsOption | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static DeleteSnapshotsOption[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final DeleteSnapshotsOption DELETE_SNAPSHOTS_ONLY
public static final DeleteSnapshotsOption INCLUDE_SNAPSHOTS
public static final DeleteSnapshotsOption NONE
public static DeleteSnapshotsOption[] values()
for (DeleteSnapshotsOption c : DeleteSnapshotsOption.values()) System.out.println(c);
public static DeleteSnapshotsOption 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 nullCopyright © 2019. All rights reserved.