| 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 */  | 
 | 
 | 
 | 
package java.nio.file.attribute;  | 
 | 
 | 
 | 
/**  | 
 | 
 * Defines the flags for used by the flags component of an ACL {@link AclEntry | 
 | 
 * entry}.  | 
 | 
 *  | 
 | 
 * <p> In this release, this class does not define flags related to {@link | 
 | 
 * AclEntryType#AUDIT} and {@link AclEntryType#ALARM} entry types. | 
 | 
 *  | 
 | 
 * @since 1.7  | 
 | 
 */  | 
 | 
 | 
 | 
public enum AclEntryFlag { | 
 | 
 | 
 | 
      | 
 | 
 | 
 | 
 | 
 | 
     */  | 
 | 
    FILE_INHERIT,  | 
 | 
 | 
 | 
      | 
 | 
 | 
 | 
 | 
 | 
     */  | 
 | 
    DIRECTORY_INHERIT,  | 
 | 
 | 
 | 
      | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
     */  | 
 | 
    NO_PROPAGATE_INHERIT,  | 
 | 
 | 
 | 
      | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
     */  | 
 | 
    INHERIT_ONLY;  | 
 | 
}  |