Package org.jclouds.blobstore.attr
Enum Class FolderCapability
- All Implemented Interfaces:
Serializable
,Comparable<FolderCapability>
,java.lang.constant.Constable
Represents the capabilities of a BlobStore
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptioncontainers have an etag associated with themcontainers have a system generated ID associated with themcontainer will have last modified date associated with themcontainers can have key-value pairs associated with themtimestamps are precise in milliseconds (as opposed to seconds)possible to expose a container to anonymous accessdeletion of a container is recursiveThere's a container that exists at the root of the servicecontainer size in bytes is exposed by service listingContainers (and subcontainers) are created implicitly -
Method Summary
Modifier and TypeMethodDescriptionstatic FolderCapability
Returns the enum constant of this class with the specified name.static FolderCapability[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
RECURSIVE_DELETE
deletion of a container is recursive -
ROOTCONTAINER
There's a container that exists at the root of the service -
SKIP_CREATE_CONTAINER
Containers (and subcontainers) are created implicitly -
METADATA
containers can have key-value pairs associated with them -
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 -
MILLISECOND_PRECISION
timestamps are precise in milliseconds (as opposed to seconds) -
SIZE
container size in bytes is exposed by service listing -
PUBLIC
possible to expose a container to anonymous access
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-