Lines Matching defs:file

8  * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
27 * Interfaces and classes providing access to file and file system attributes.
31 * <tr><td valign=top><tt><i>{@link java.nio.file.attribute.AttributeView}</i></tt></td>
32 * <td>Can read or update non-opaque values associated with objects in a file system</td></tr>
33 * <tr><td valign=top><tt>&nbsp;&nbsp;<i>{@link java.nio.file.attribute.FileAttributeView}</i></tt></td>
34 * <td>Can read or update file attributes</td></tr>
35 * <tr><td valign=top><tt>&nbsp;&nbsp;&nbsp;&nbsp;<i>{@link java.nio.file.attribute.BasicFileAttributeView}&nbsp;&nbsp;</i></tt></td>
36 * <td>Can read or update a basic set of file attributes</td></tr>
37 * <tr><td valign=top><tt>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<i>{@link java.nio.file.attribute.PosixFileAttributeView}&nbsp;&nbsp;</i></tt></td>
38 * <td>Can read or update POSIX defined file attributes</td></tr>
39 * <tr><td valign=top><tt>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<i>{@link java.nio.file.attribute.DosFileAttributeView}&nbsp;&nbsp;</i></tt></td>
40 * <td>Can read or update FAT file attributes</td></tr>
41 * <tr><td valign=top><tt>&nbsp;&nbsp;&nbsp;&nbsp<i>{@link java.nio.file.attribute.FileOwnerAttributeView}&nbsp;&nbsp;</i></tt></td>
42 * <td>Can read or update the owner of a file</td></tr>
43 * <tr><td valign=top><tt>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<i>{@link java.nio.file.attribute.AclFileAttributeView}&nbsp;&nbsp;</i></tt></td>
45 * <tr><td valign=top><tt>&nbsp;&nbsp;&nbsp;&nbsp;<i>{@link java.nio.file.attribute.UserDefinedFileAttributeView}&nbsp;&nbsp;</i></tt></td>
46 * <td>Can read or update user-defined file attributes</td></tr>
47 * <tr><td valign=top><tt>&nbsp;&nbsp;<i>{@link java.nio.file.attribute.FileStoreAttributeView}</i></tt></td>
48 * <td>Can read or update file system attributes</td></tr>
52 * values, or <em>metadata</em>, associated with objects in a file system.
53 * The {@link java.nio.file.attribute.FileAttributeView} interface is
54 * extended by several other interfaces that that views to specific sets of file
56 * java.nio.file.Files#getFileAttributeView} method with a
58 * by name. The {@link java.nio.file.attribute.FileStoreAttributeView} interface
59 * provides access to file store attributes. A {@code FileStoreAttributeView} of
61 * java.nio.file.FileStore#getFileStoreAttributeView} method.
63 * <p> The {@link java.nio.file.attribute.BasicFileAttributeView}
64 * class defines methods to read and update a <em>basic</em> set of file
65 * attributes that are common to many file systems.
67 * <p> The {@link java.nio.file.attribute.PosixFileAttributeView}
69 * to access the file attributes commonly used by file systems and operating systems
73 * <p> The {@link java.nio.file.attribute.DosFileAttributeView}
75 * access the legacy "DOS" file attributes supported on file systems such as File
78 * <p> The {@link java.nio.file.attribute.AclFileAttributeView}
80 * file attribute. The ACL model used by this file attribute view is based
89 * <p><li> The {@link java.nio.file.attribute.UserPrincipal} and
90 * {@link java.nio.file.attribute.GroupPrincipal} interfaces represent an
93 * <p><li> The {@link java.nio.file.attribute.UserPrincipalLookupService}
96 * <p><li> The {@link java.nio.file.attribute.FileAttribute} interface
98 * required to be set atomically when creating an object in the file system. </li>
110 package java.nio.file.attribute;