public enum PublicAccess extends Enum<PublicAccess>
Enum Constant and Description |
---|
BLOB
Indicates public read access for blobs.
|
CONTAINER
Indicates full public read access for container and blob data.
|
PRIVATE
the container is private to the account owner.
|
Modifier and Type | Method and Description |
---|---|
static PublicAccess |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PublicAccess[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PublicAccess CONTAINER
public static final PublicAccess BLOB
public static final PublicAccess PRIVATE
public static PublicAccess[] values()
for (PublicAccess c : PublicAccess.values()) System.out.println(c);
public static PublicAccess 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-2012 jclouds. All Rights Reserved.