public enum ContainerVisibilities extends Enum<ContainerVisibilities>
| Enum Constant and Description | 
|---|
ACCOUNT
Container namespace is shared within an identity and therefore all containers are deletable by
 the identity. 
 | 
PUBLIC
Container namespace is shared by the general public and therefore has highest likelihood of
 collision. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static ContainerVisibilities | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static ContainerVisibilities[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final ContainerVisibilities PUBLIC
public static final ContainerVisibilities ACCOUNT
public static ContainerVisibilities[] values()
for (ContainerVisibilities c : ContainerVisibilities.values()) System.out.println(c);
public static ContainerVisibilities 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.