public enum AccessControlList extends java.lang.Enum<AccessControlList>
Enum Constant and Description |
---|
PRIVATE |
PUBLIC_READ |
PUBLIC_READ_WRITE |
Modifier and Type | Method and Description |
---|---|
static AccessControlList |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AccessControlList[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccessControlList PRIVATE
public static final AccessControlList PUBLIC_READ
public static final AccessControlList PUBLIC_READ_WRITE
public static AccessControlList[] values()
for (AccessControlList c : AccessControlList.values()) System.out.println(c);
public static AccessControlList 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