jdk/src/java.base/share/classes/java/nio/charset/Charset.java
changeset 45881 aaec0fbe17ae
parent 45718 ba97c984166b
child 45894 995421c69f66
equal deleted inserted replaced
45871:878e21603932 45881:aaec0fbe17ae
   148  * of such optional charsets may differ between implementations.
   148  * of such optional charsets may differ between implementations.
   149  *
   149  *
   150  * <blockquote><table class="striped" style="width:80%">
   150  * <blockquote><table class="striped" style="width:80%">
   151  * <caption style="display:none">Description of standard charsets</caption>
   151  * <caption style="display:none">Description of standard charsets</caption>
   152  * <thead>
   152  * <thead>
   153  * <tr><th style="text-align:left">Charset</th><th style="text-align:left">Description</th></tr>
   153  * <tr><th scope="col" style="text-align:left">Charset</th><th scope="col" style="text-align:left">Description</th></tr>
   154  * </thead>
   154  * </thead>
   155  * <tbody>
   155  * <tbody>
   156  * <tr><td style="vertical-align:top">{@code US-ASCII}</td>
   156  * <tr><th scope="row" style="vertical-align:top">{@code US-ASCII}</th>
   157  *     <td>Seven-bit ASCII, a.k.a. {@code ISO646-US},
   157  *     <td>Seven-bit ASCII, a.k.a. {@code ISO646-US},
   158  *         a.k.a. the Basic Latin block of the Unicode character set</td></tr>
   158  *         a.k.a. the Basic Latin block of the Unicode character set</td></tr>
   159  * <tr><td style="vertical-align:top"><code>ISO-8859-1&nbsp;&nbsp;</code></td>
   159  * <tr><th scope="row" style="vertical-align:top"><code>ISO-8859-1&nbsp;&nbsp;</code></th>
   160  *     <td>ISO Latin Alphabet No. 1, a.k.a. {@code ISO-LATIN-1}</td></tr>
   160  *     <td>ISO Latin Alphabet No. 1, a.k.a. {@code ISO-LATIN-1}</td></tr>
   161  * <tr><td style="vertical-align:top">{@code UTF-8}</td>
   161  * <tr><th scope="row" style="vertical-align:top">{@code UTF-8}</th>
   162  *     <td>Eight-bit UCS Transformation Format</td></tr>
   162  *     <td>Eight-bit UCS Transformation Format</td></tr>
   163  * <tr><td style="vertical-align:top">{@code UTF-16BE}</td>
   163  * <tr><th scope="row" style="vertical-align:top">{@code UTF-16BE}</th>
   164  *     <td>Sixteen-bit UCS Transformation Format,
   164  *     <td>Sixteen-bit UCS Transformation Format,
   165  *         big-endian byte&nbsp;order</td></tr>
   165  *         big-endian byte&nbsp;order</td></tr>
   166  * <tr><td style="vertical-align:top">{@code UTF-16LE}</td>
   166  * <tr><th scope="row" style="vertical-align:top">{@code UTF-16LE}</th>
   167  *     <td>Sixteen-bit UCS Transformation Format,
   167  *     <td>Sixteen-bit UCS Transformation Format,
   168  *         little-endian byte&nbsp;order</td></tr>
   168  *         little-endian byte&nbsp;order</td></tr>
   169  * <tr><td style="vertical-align:top">{@code UTF-16}</td>
   169  * <tr><th scope="row" style="vertical-align:top">{@code UTF-16}</th>
   170  *     <td>Sixteen-bit UCS Transformation Format,
   170  *     <td>Sixteen-bit UCS Transformation Format,
   171  *         byte&nbsp;order identified by an optional byte-order mark</td></tr>
   171  *         byte&nbsp;order identified by an optional byte-order mark</td></tr>
   172  * </tbody>
   172  * </tbody>
   173  * </table></blockquote>
   173  * </table></blockquote>
   174  *
   174  *