public enum BlobServiceOperations extends Enum<BlobServiceOperations>
Enum Constant and Description |
---|
clearPageBlob |
commitBlobBlockList |
createAppendBlob |
createPageBlob
Page Block operations
|
deleteBlob |
getBlob
Common to all block types
|
getBlobBlockList |
getPageBlobRanges |
listBlobs |
resizePageBlob |
updateAppendBlob |
updateBlockBlob |
updatePageBlob |
uploadBlobBlocks |
Modifier and Type | Method and Description |
---|---|
static BlobServiceOperations |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BlobServiceOperations[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlobServiceOperations getBlob
public static final BlobServiceOperations deleteBlob
public static final BlobServiceOperations listBlobs
public static final BlobServiceOperations updateBlockBlob
public static final BlobServiceOperations uploadBlobBlocks
public static final BlobServiceOperations commitBlobBlockList
public static final BlobServiceOperations getBlobBlockList
public static final BlobServiceOperations createAppendBlob
public static final BlobServiceOperations updateAppendBlob
public static final BlobServiceOperations createPageBlob
public static final BlobServiceOperations updatePageBlob
public static final BlobServiceOperations resizePageBlob
public static final BlobServiceOperations clearPageBlob
public static final BlobServiceOperations getPageBlobRanges
public static BlobServiceOperations[] values()
for (BlobServiceOperations c : BlobServiceOperations.values()) System.out.println(c);
public static BlobServiceOperations 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 nullApache Camel