@@ -89,71 +89,55 @@ public static Charset toCharset(String charset) {
8989 }
9090
9191 /**
92- * CharEncodingISO Latin Alphabet No. 1, a.k.a. ISO-LATIN-1. </p>
92+ * CharEncodingISO Latin Alphabet No. 1, a.k.a. ISO-LATIN-1.
9393 * <p>
9494 * Every implementation of the Java platform is required to support this character encoding.
95- * </p>
9695 *
9796 * @see <a href="http://docs.oracle.com/javase/6/docs/api/java/nio/charset/Charset.html">Standard charsets</a>
9897 */
9998 public static final Charset ISO_8859_1 = Charset .forName (CharEncoding .ISO_8859_1 );
10099
101100 /**
102- * <p>
103101 * Seven-bit ASCII, also known as ISO646-US, also known as the Basic Latin block of the Unicode character set.
104- * </p>
105102 * <p>
106103 * Every implementation of the Java platform is required to support this character encoding.
107- * </p>
108104 *
109105 * @see <a href="http://docs.oracle.com/javase/6/docs/api/java/nio/charset/Charset.html">Standard charsets</a>
110106 */
111107 public static final Charset US_ASCII = Charset .forName (CharEncoding .US_ASCII );
112108
113109 /**
114- * <p>
115110 * Sixteen-bit Unicode Transformation Format, The byte order specified by a mandatory initial byte-order mark
116111 * (either order accepted on input, big-endian used on output)
117- * </p>
118112 * <p>
119113 * Every implementation of the Java platform is required to support this character encoding.
120- * </p>
121114 *
122115 * @see <a href="http://docs.oracle.com/javase/6/docs/api/java/nio/charset/Charset.html">Standard charsets</a>
123116 */
124117 public static final Charset UTF_16 = Charset .forName (CharEncoding .UTF_16 );
125118
126119 /**
127- * <p>
128120 * Sixteen-bit Unicode Transformation Format, big-endian byte order.
129- * </p>
130121 * <p>
131122 * Every implementation of the Java platform is required to support this character encoding.
132- * </p>
133123 *
134124 * @see <a href="http://docs.oracle.com/javase/6/docs/api/java/nio/charset/Charset.html">Standard charsets</a>
135125 */
136126 public static final Charset UTF_16BE = Charset .forName (CharEncoding .UTF_16BE );
137127
138128 /**
139- * <p>
140129 * Sixteen-bit Unicode Transformation Format, little-endian byte order.
141- * </p>
142130 * <p>
143131 * Every implementation of the Java platform is required to support this character encoding.
144- * </p>
145132 *
146133 * @see <a href="http://docs.oracle.com/javase/6/docs/api/java/nio/charset/Charset.html">Standard charsets</a>
147134 */
148135 public static final Charset UTF_16LE = Charset .forName (CharEncoding .UTF_16LE );
149136
150137 /**
151- * <p>
152138 * Eight-bit Unicode Transformation Format.
153- * </p>
154139 * <p>
155140 * Every implementation of the Java platform is required to support this character encoding.
156- * </p>
157141 *
158142 * @see <a href="http://docs.oracle.com/javase/6/docs/api/java/nio/charset/Charset.html">Standard charsets</a>
159143 */
0 commit comments