Enum DomainResourceReferences.DestinationPredefinedAcl
- java.lang.Object
-
- java.lang.Enum<DomainResourceReferences.DestinationPredefinedAcl>
-
- org.jclouds.googlecloudstorage.domain.DomainResourceReferences.DestinationPredefinedAcl
-
- All Implemented Interfaces:
Serializable
,Comparable<DomainResourceReferences.DestinationPredefinedAcl>
- Enclosing class:
- DomainResourceReferences
public static enum DomainResourceReferences.DestinationPredefinedAcl extends Enum<DomainResourceReferences.DestinationPredefinedAcl>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUTHENTICATED_READ
BUCKET_OWNER_FULLCONTROL
BUCKET_OWNER_READ
PRIVATE
PROJECT_PRIVATE
PUBLIC_READ
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DomainResourceReferences.DestinationPredefinedAcl
fromValue(String destinationPredefinedAcl)
String
toString()
String
value()
static DomainResourceReferences.DestinationPredefinedAcl
valueOf(String name)
Returns the enum constant of this type with the specified name.static DomainResourceReferences.DestinationPredefinedAcl[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTHENTICATED_READ
public static final DomainResourceReferences.DestinationPredefinedAcl AUTHENTICATED_READ
-
BUCKET_OWNER_FULLCONTROL
public static final DomainResourceReferences.DestinationPredefinedAcl BUCKET_OWNER_FULLCONTROL
-
BUCKET_OWNER_READ
public static final DomainResourceReferences.DestinationPredefinedAcl BUCKET_OWNER_READ
-
PRIVATE
public static final DomainResourceReferences.DestinationPredefinedAcl PRIVATE
-
PROJECT_PRIVATE
public static final DomainResourceReferences.DestinationPredefinedAcl PROJECT_PRIVATE
-
PUBLIC_READ
public static final DomainResourceReferences.DestinationPredefinedAcl PUBLIC_READ
-
-
Method Detail
-
values
public static DomainResourceReferences.DestinationPredefinedAcl[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DomainResourceReferences.DestinationPredefinedAcl c : DomainResourceReferences.DestinationPredefinedAcl.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DomainResourceReferences.DestinationPredefinedAcl valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
value
public String value()
-
toString
public String toString()
- Overrides:
toString
in classEnum<DomainResourceReferences.DestinationPredefinedAcl>
-
fromValue
public static DomainResourceReferences.DestinationPredefinedAcl fromValue(String destinationPredefinedAcl)
-
-