public enum PrestoS3AclType extends Enum<PrestoS3AclType>
| Enum Constant and Description |
|---|
AUTHENTICATED_READ |
AWS_EXEC_READ |
BUCKET_OWNER_FULL_CONTROL |
BUCKET_OWNER_READ |
LOG_DELIVERY_WRITE |
PRIVATE |
PUBLIC_READ |
PUBLIC_READ_WRITE |
| Modifier and Type | Method and Description |
|---|---|
static PrestoS3AclType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PrestoS3AclType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PrestoS3AclType AUTHENTICATED_READ
public static final PrestoS3AclType AWS_EXEC_READ
public static final PrestoS3AclType BUCKET_OWNER_FULL_CONTROL
public static final PrestoS3AclType BUCKET_OWNER_READ
public static final PrestoS3AclType LOG_DELIVERY_WRITE
public static final PrestoS3AclType PRIVATE
public static final PrestoS3AclType PUBLIC_READ
public static final PrestoS3AclType PUBLIC_READ_WRITE
public static PrestoS3AclType[] values()
for (PrestoS3AclType c : PrestoS3AclType.values()) System.out.println(c);
public static PrestoS3AclType 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 © 2012–2023. All rights reserved.