public enum BlobCapability extends Enum<BlobCapability>
| Enum Constant and Description | 
|---|
CHUNKED_ENCODING
Enable "chunked"/"streamed" data, where the size needn't be known in advance. 
 | 
CONDITIONAL_DATE
receive pieces of a blob via Content-Range header 
 | 
CONDITIONAL_MATCH
supports 
 | 
ETAG
blobs have an etag associated with them 
 | 
ETAG_EQUALS_MD5
etag is the same value as the MD5 of the object 
 | 
GET_RANGE
receive pieces of a blob via Content-Range header 
 | 
ID
blobs have a system generated ID associated with them 
 | 
LAST_MODIFIED
blobs will have last modified date associated with them 
 | 
MD5
blobstore stores Content-MD5 header 
 | 
METADATA
blobs can have key-value pairs associated with them 
 | 
MILLISECOND_PRECISION
timestamps are precise in milliseconds (as opposed to seconds) 
 | 
PUBLIC
possible to expose blobs to anonymous access 
 | 
PUT_RANGE
replace pieces of a blob via Content-Range header 
 | 
SIZE
blob size in bytes is exposed by service listing 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static BlobCapability | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static BlobCapability[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final BlobCapability CONDITIONAL_MATCH
public static final BlobCapability CONDITIONAL_DATE
public static final BlobCapability GET_RANGE
public static final BlobCapability PUT_RANGE
public static final BlobCapability CHUNKED_ENCODING
public static final BlobCapability METADATA
public static final BlobCapability ETAG
public static final BlobCapability ID
public static final BlobCapability MD5
public static final BlobCapability ETAG_EQUALS_MD5
public static final BlobCapability LAST_MODIFIED
public static final BlobCapability MILLISECOND_PRECISION
public static final BlobCapability SIZE
public static final BlobCapability PUBLIC
public static BlobCapability[] values()
for (BlobCapability c : BlobCapability.values()) System.out.println(c);
public static BlobCapability 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 © 2009-2013 jclouds. All Rights Reserved.