public enum BucketPolicyEnum extends Enum<BucketPolicyEnum>
| Enum Constant and Description |
|---|
Private
私有
|
PublicRead
公共读
|
PublicReadWrite
公共读写
|
| Modifier and Type | Method and Description |
|---|---|
static BucketPolicyEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BucketPolicyEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BucketPolicyEnum Private
public static final BucketPolicyEnum PublicRead
public static final BucketPolicyEnum PublicReadWrite
public static BucketPolicyEnum[] values()
for (BucketPolicyEnum c : BucketPolicyEnum.values()) System.out.println(c);
public static BucketPolicyEnum 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. All rights reserved.