jdk/src/java.base/share/classes/java/nio/file/attribute/BasicFileAttributeView.java
changeset 45881 aaec0fbe17ae
parent 45124 144479e89cdb
equal deleted inserted replaced
45871:878e21603932 45881:aaec0fbe17ae
    43  * <blockquote>
    43  * <blockquote>
    44  *  <table class="striped">
    44  *  <table class="striped">
    45  *  <caption style="display:none">Supported attributes</caption>
    45  *  <caption style="display:none">Supported attributes</caption>
    46  *  <thead>
    46  *  <thead>
    47  *   <tr>
    47  *   <tr>
    48  *     <th> Name </th>
    48  *     <th scope="col"> Name </th>
    49  *     <th> Type </th>
    49  *     <th scope="col"> Type </th>
    50  *   </tr>
    50  *   </tr>
    51  *  </thead>
    51  *  </thead>
    52  *  <tbody>
    52  *  <tbody>
    53  *  <tr>
    53  *  <tr>
    54  *     <td> "lastModifiedTime" </td>
    54  *     <th scope="row"> "lastModifiedTime" </th>
    55  *     <td> {@link FileTime} </td>
    55  *     <td> {@link FileTime} </td>
    56  *   </tr>
    56  *   </tr>
    57  *   <tr>
    57  *   <tr>
    58  *     <td> "lastAccessTime" </td>
    58  *     <th scope="row"> "lastAccessTime" </th>
    59  *     <td> {@link FileTime} </td>
    59  *     <td> {@link FileTime} </td>
    60  *   </tr>
    60  *   </tr>
    61  *   <tr>
    61  *   <tr>
    62  *     <td> "creationTime" </td>
    62  *     <th scope="row"> "creationTime" </th>
    63  *     <td> {@link FileTime} </td>
    63  *     <td> {@link FileTime} </td>
    64  *   </tr>
    64  *   </tr>
    65  *   <tr>
    65  *   <tr>
    66  *     <td> "size" </td>
    66  *     <th scope="row"> "size" </th>
    67  *     <td> {@link Long} </td>
    67  *     <td> {@link Long} </td>
    68  *   </tr>
    68  *   </tr>
    69  *   <tr>
    69  *   <tr>
    70  *     <td> "isRegularFile" </td>
    70  *     <th scope="row"> "isRegularFile" </th>
    71  *     <td> {@link Boolean} </td>
    71  *     <td> {@link Boolean} </td>
    72  *   </tr>
    72  *   </tr>
    73  *   <tr>
    73  *   <tr>
    74  *     <td> "isDirectory" </td>
    74  *     <th scope="row"> "isDirectory" </th>
    75  *     <td> {@link Boolean} </td>
    75  *     <td> {@link Boolean} </td>
    76  *   </tr>
    76  *   </tr>
    77  *   <tr>
    77  *   <tr>
    78  *     <td> "isSymbolicLink" </td>
    78  *     <th scope="row"> "isSymbolicLink" </th>
    79  *     <td> {@link Boolean} </td>
    79  *     <td> {@link Boolean} </td>
    80  *   </tr>
    80  *   </tr>
    81  *   <tr>
    81  *   <tr>
    82  *     <td> "isOther" </td>
    82  *     <th scope="row"> "isOther" </th>
    83  *     <td> {@link Boolean} </td>
    83  *     <td> {@link Boolean} </td>
    84  *   </tr>
    84  *   </tr>
    85  *   <tr>
    85  *   <tr>
    86  *     <td> "fileKey" </td>
    86  *     <th scope="row"> "fileKey" </th>
    87  *     <td> {@link Object} </td>
    87  *     <td> {@link Object} </td>
    88  *   </tr>
    88  *   </tr>
    89  * </tbody>
    89  * </tbody>
    90  * </table>
    90  * </table>
    91  * </blockquote>
    91  * </blockquote>