- All Implemented Interfaces:
- Serializable,- Comparable<AclEntryPermission>,- Constable
public enum AclEntryPermission extends Enum<AclEntryPermission>
Defines the permissions for use with the permissions component of an ACL
 
entry.- Since:
- 1.7
- 
Nested Class Summary
- 
Enum Constant SummaryEnum Constants Enum Constant Description APPEND_DATAPermission to append data to a file.DELETEPermission to delete the file.DELETE_CHILDPermission to delete a file or directory within a directory.EXECUTEPermission to execute a file.READ_ACLPermission to read the ACL attribute.READ_ATTRIBUTESThe ability to read (non-acl) file attributes.READ_DATAPermission to read the data of the file.READ_NAMED_ATTRSPermission to read the named attributes of a file.SYNCHRONIZEPermission to access file locally at the server with synchronous reads and writes.WRITE_ACLPermission to write the ACL attribute.WRITE_ATTRIBUTESThe ability to write (non-acl) file attributes.WRITE_DATAPermission to modify the file's data.WRITE_NAMED_ATTRSPermission to write the named attributes of a file.WRITE_OWNERPermission to change the owner.
- 
Field SummaryFields Modifier and Type Field Description static AclEntryPermissionADD_FILEPermission to add a new file to a directory (equal toWRITE_DATA)static AclEntryPermissionADD_SUBDIRECTORYPermission to create a subdirectory to a directory (equal toAPPEND_DATA)static AclEntryPermissionLIST_DIRECTORYPermission to list the entries of a directory (equal toREAD_DATA)
- 
Method SummaryModifier and Type Method Description static AclEntryPermissionvalueOf(String name)Returns the enum constant of this type with the specified name.static AclEntryPermission[]values()Returns an array containing the constants of this enum type, in the order they are declared.
- 
Enum Constant Details- 
READ_DATAPermission to read the data of the file.
- 
WRITE_DATAPermission to modify the file's data.
- 
APPEND_DATAPermission to append data to a file.
- 
READ_NAMED_ATTRSPermission to read the named attributes of a file.RFC 3530: Network File System (NFS) version 4 Protocol defines named attributes as opaque files associated with a file in the file system. 
- 
WRITE_NAMED_ATTRSPermission to write the named attributes of a file.RFC 3530: Network File System (NFS) version 4 Protocol defines named attributes as opaque files associated with a file in the file system. 
- 
EXECUTEPermission to execute a file.
- 
DELETE_CHILDPermission to delete a file or directory within a directory.
- 
READ_ATTRIBUTESThe ability to read (non-acl) file attributes.
- 
WRITE_ATTRIBUTESThe ability to write (non-acl) file attributes.
- 
DELETEPermission to delete the file.
- 
READ_ACLPermission to read the ACL attribute.
- 
WRITE_ACLPermission to write the ACL attribute.
- 
WRITE_OWNERPermission to change the owner.
- 
SYNCHRONIZEPermission to access file locally at the server with synchronous reads and writes.
 
- 
- 
Field Details- 
LIST_DIRECTORYPermission to list the entries of a directory (equal toREAD_DATA)
- 
ADD_FILEPermission to add a new file to a directory (equal toWRITE_DATA)
- 
ADD_SUBDIRECTORYPermission to create a subdirectory to a directory (equal toAPPEND_DATA)
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
 
- 
valueOfReturns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
 
-