public enum GranteeType extends java.lang.Enum<GranteeType>
| Enum Constant and Description |
|---|
CANONICAL_GRANTEE_TYPE
This represents the Canonical id of the users AWS account
|
EMAIL_GRANTEE_TYPE
This email is usually resolved to the canonical id of the user.
|
GROUP_GRANTEE_TYPE
These represent come constants representing some predefined groups by Amazon S3
|
| Modifier and Type | Method and Description |
|---|---|
static GranteeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GranteeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GranteeType CANONICAL_GRANTEE_TYPE
public static final GranteeType EMAIL_GRANTEE_TYPE
public static final GranteeType GROUP_GRANTEE_TYPE
public static GranteeType[] values()
for (GranteeType c : GranteeType.values()) System.out.println(c);
public static GranteeType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is null