Package Summary  Overview Summary

class:AclEntryPermission [NONE]

field:READ_DATA [NONE]

  • READ_DATA

    public static final AclEntryPermission READ_DATA
    Permission to read the data of the file.

field:WRITE_DATA [NONE]

  • WRITE_DATA

    public static final AclEntryPermission WRITE_DATA
    Permission to modify the file's data.

field:APPEND_DATA [NONE]

  • APPEND_DATA

    public static final AclEntryPermission APPEND_DATA
    Permission to append data to a file.

field:READ_NAMED_ATTRS [NONE]

field:WRITE_NAMED_ATTRS [NONE]

field:EXECUTE [NONE]

field:DELETE_CHILD [NONE]

  • DELETE_CHILD

    public static final AclEntryPermission DELETE_CHILD
    Permission to delete a file or directory within a directory.

field:READ_ATTRIBUTES [NONE]

  • READ_ATTRIBUTES

    public static final AclEntryPermission READ_ATTRIBUTES
    The ability to read (non-acl) file attributes.

field:WRITE_ATTRIBUTES [NONE]

  • WRITE_ATTRIBUTES

    public static final AclEntryPermission WRITE_ATTRIBUTES
    The ability to write (non-acl) file attributes.

field:DELETE [NONE]

field:READ_ACL [NONE]

  • READ_ACL

    public static final AclEntryPermission READ_ACL
    Permission to read the ACL attribute.

field:WRITE_ACL [NONE]

  • WRITE_ACL

    public static final AclEntryPermission WRITE_ACL
    Permission to write the ACL attribute.

field:WRITE_OWNER [NONE]

  • WRITE_OWNER

    public static final AclEntryPermission WRITE_OWNER
    Permission to change the owner.

field:SYNCHRONIZE [NONE]

  • SYNCHRONIZE

    public static final AclEntryPermission SYNCHRONIZE
    Permission to access file locally at the server with synchronous reads and writes.

field:LIST_DIRECTORY [NONE]

  • LIST_DIRECTORY

    public static final AclEntryPermission LIST_DIRECTORY
    Permission to list the entries of a directory (equal to READ_DATA)

field:ADD_FILE [NONE]

field:ADD_SUBDIRECTORY [NONE]

  • ADD_SUBDIRECTORY

    public static final AclEntryPermission ADD_SUBDIRECTORY
    Permission to create a subdirectory to a directory (equal to APPEND_DATA)

method:values() [NONE]

  • values

    public static AclEntryPermission[] values()
    Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
    for (AclEntryPermission c : AclEntryPermission.values())
        System.out.println(c);
    
    Returns:
    an array containing the constants of this enum type, in the order they are declared

method:valueOf(java.lang.String) [NONE]

  • valueOf

    public static AclEntryPermission valueOf(String name)
    Returns 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

© 2017 Oracle Corporation and/or its affiliates