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