public enum ACLType extends Enum<ACLType>
| Enum Constant and Description |
|---|
ADMINISTRATOR
All privileges.
|
NONE
Access denied to user.
|
READ_ONLY
Allow users to only read files.
|
WRITE_ALL
Allow users to create, edit and delete files of everyone in the share.
|
WRITE_OWNER
Allow users to create, edit and delete their own files.
|
| Modifier and Type | Method and Description |
|---|---|
static ACLType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ACLType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ACLType NONE
public static final ACLType READ_ONLY
public static final ACLType WRITE_OWNER
public static final ACLType WRITE_ALL
public static final ACLType ADMINISTRATOR
public static ACLType[] values()
for (ACLType c : ACLType.values()) System.out.println(c);
public static ACLType 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.