public enum AccessControlList extends Enum<AccessControlList>
Enum Constant and Description |
---|
PRIVATE |
PUBLIC_READ |
PUBLIC_READ_WRITE |
Modifier and Type | Method and Description |
---|---|
static AccessControlList |
valueOf(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(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 © 2015. All rights reserved.