public enum FolderCapability extends Enum<FolderCapability>
| Enum Constant and Description | 
|---|
ETAG
containers have an etag associated with them 
 | 
ID
containers have a system generated ID associated with them 
 | 
LAST_MODIFIED
container will have last modified date associated with them 
 | 
METADATA
containers can have key-value pairs associated with them 
 | 
MILLISECOND_PRECISION
timestamps are precise in milliseconds (as opposed to seconds) 
 | 
PUBLIC
possible to expose a container to anonymous access 
 | 
RECURSIVE_DELETE
deletion of a container is recursive 
 | 
ROOTCONTAINER
There's a container that exists at the root of the service 
 | 
SIZE
container size in bytes is exposed by service listing 
 | 
SKIP_CREATE_CONTAINER
Containers (and subcontainers) are created implicitly 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static FolderCapability | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static FolderCapability[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final FolderCapability RECURSIVE_DELETE
public static final FolderCapability ROOTCONTAINER
public static final FolderCapability SKIP_CREATE_CONTAINER
public static final FolderCapability METADATA
public static final FolderCapability ETAG
public static final FolderCapability ID
public static final FolderCapability LAST_MODIFIED
public static final FolderCapability MILLISECOND_PRECISION
public static final FolderCapability SIZE
public static final FolderCapability PUBLIC
public static FolderCapability[] values()
for (FolderCapability c : FolderCapability.values()) System.out.println(c);
public static FolderCapability 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.