|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<ContainerCapability> org.jclouds.blobstore.attr.ContainerCapability
public enum ContainerCapability
Represents the capabilities of a BlobStore
Enum Constant Summary | |
---|---|
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 |
Method Summary | |
---|---|
static ContainerCapability |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ContainerCapability[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ContainerCapability RECURSIVE_DELETE
public static final ContainerCapability ROOTCONTAINER
public static final ContainerCapability SKIP_CREATE_CONTAINER
public static final ContainerCapability METADATA
public static final ContainerCapability ETAG
public static final ContainerCapability ID
public static final ContainerCapability LAST_MODIFIED
public static final ContainerCapability MILLISECOND_PRECISION
public static final ContainerCapability SIZE
public static final ContainerCapability PUBLIC
Method Detail |
---|
public static ContainerCapability[] values()
for (ContainerCapability c : ContainerCapability.values()) System.out.println(c);
public static ContainerCapability valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |