55 * The ASF licenses this file to You under the Apache License, Version 2.0
66 * (the "License"); you may not use this file except in compliance with
77 * the License. You may obtain a copy of the License at
8- *
8+ *
99 * http://www.apache.org/licenses/LICENSE-2.0
10- *
10+ *
1111 * Unless required by applicable law or agreed to in writing, software
1212 * distributed under the License is distributed on an "AS IS" BASIS,
1313 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2424
2525/**
2626 * Charsets required of every implementation of the Java platform.
27- *
27+ *
2828 * From the Java documentation <a href="https://docs.oracle.com/javase/7/docs/api/java/nio/charset/Charset.html">
2929 * Standard charsets</a>:
3030 * <p>
3131 * <cite>Every implementation of the Java platform is required to support the following character encodings. Consult
3232 * the release documentation for your implementation to see if any other encodings are supported. Consult the release
3333 * documentation for your implementation to see if any other encodings are supported. </cite>
3434 * </p>
35- *
35+ *
3636 * <ul>
3737 * <li><code>US-ASCII</code><br>
3838 * Seven-bit ASCII, a.k.a. ISO646-US, a.k.a. the Basic Latin block of the Unicode character set.</li>
4848 * Sixteen-bit Unicode Transformation Format, byte order specified by a mandatory initial byte-order mark (either order
4949 * accepted on input, big-endian used on output.)</li>
5050 * </ul>
51- *
51+ *
5252 * @see <a href="https://docs.oracle.com/javase/7/docs/api/java/nio/charset/Charset.html">Standard charsets</a>
5353 * @since 2.3
5454 * @version $Id$
@@ -66,7 +66,7 @@ public class Charsets {
6666 * From the Java documentation <a href="https://docs.oracle.com/javase/7/docs/api/java/nio/charset/Charset.html">
6767 * Standard charsets</a>:
6868 * </p>
69- *
69+ *
7070 * @return An immutable, case-insensitive map from canonical charset names to charset objects.
7171 * @see Charset#availableCharsets()
7272 * @since 2.5
@@ -85,7 +85,7 @@ public static SortedMap<String, Charset> requiredCharsets() {
8585
8686 /**
8787 * Returns the given Charset or the default Charset if the given Charset is null.
88- *
88+ *
8989 * @param charset
9090 * A charset or null.
9191 * @return the given Charset or the default Charset if the given Charset is null
@@ -96,7 +96,7 @@ public static Charset toCharset(final Charset charset) {
9696
9797 /**
9898 * Returns a Charset for the named charset. If the name is null, return the default Charset.
99- *
99+ *
100100 * @param charset
101101 * The name of the requested charset, may be null.
102102 * @return a Charset for the named charset
@@ -112,7 +112,7 @@ public static Charset toCharset(final String charset) {
112112 * <p>
113113 * Every implementation of the Java platform is required to support this character encoding.
114114 * </p>
115- *
115+ *
116116 * @see <a href="https://docs.oracle.com/javase/7/docs/api/java/nio/charset/Charset.html">Standard charsets</a>
117117 * @deprecated Use Java 7's {@link java.nio.charset.StandardCharsets}
118118 */
@@ -126,7 +126,7 @@ public static Charset toCharset(final String charset) {
126126 * <p>
127127 * Every implementation of the Java platform is required to support this character encoding.
128128 * </p>
129- *
129+ *
130130 * @see <a href="https://docs.oracle.com/javase/7/docs/api/java/nio/charset/Charset.html">Standard charsets</a>
131131 * @deprecated Use Java 7's {@link java.nio.charset.StandardCharsets}
132132 */
@@ -141,7 +141,7 @@ public static Charset toCharset(final String charset) {
141141 * <p>
142142 * Every implementation of the Java platform is required to support this character encoding.
143143 * </p>
144- *
144+ *
145145 * @see <a href="https://docs.oracle.com/javase/7/docs/api/java/nio/charset/Charset.html">Standard charsets</a>
146146 * @deprecated Use Java 7's {@link java.nio.charset.StandardCharsets}
147147 */
@@ -155,7 +155,7 @@ public static Charset toCharset(final String charset) {
155155 * <p>
156156 * Every implementation of the Java platform is required to support this character encoding.
157157 * </p>
158- *
158+ *
159159 * @see <a href="https://docs.oracle.com/javase/7/docs/api/java/nio/charset/Charset.html">Standard charsets</a>
160160 * @deprecated Use Java 7's {@link java.nio.charset.StandardCharsets}
161161 */
@@ -169,7 +169,7 @@ public static Charset toCharset(final String charset) {
169169 * <p>
170170 * Every implementation of the Java platform is required to support this character encoding.
171171 * </p>
172- *
172+ *
173173 * @see <a href="https://docs.oracle.com/javase/7/docs/api/java/nio/charset/Charset.html">Standard charsets</a>
174174 * @deprecated Use Java 7's {@link java.nio.charset.StandardCharsets}
175175 */
@@ -183,7 +183,7 @@ public static Charset toCharset(final String charset) {
183183 * <p>
184184 * Every implementation of the Java platform is required to support this character encoding.
185185 * </p>
186- *
186+ *
187187 * @see <a href="https://docs.oracle.com/javase/7/docs/api/java/nio/charset/Charset.html">Standard charsets</a>
188188 * @deprecated Use Java 7's {@link java.nio.charset.StandardCharsets}
189189 */
0 commit comments