2626
2727/**
2828 * Converts String to and from bytes using the encodings required by the Java specification. These encodings are
29- * specified in <a href="http://download.oracle.com/javase/6 /docs/api/java/nio/charset/Charset.html">
29+ * specified in <a href="http://download.oracle.com/javase/7 /docs/api/java/nio/charset/Charset.html">
3030 * Standard charsets</a>.
3131 *
3232 * <p>This class is immutable and thread-safe.</p>
3333 *
3434 * @see CharEncoding
35- * @see <a href="http://download.oracle.com/javase/6 /docs/api/java/nio/charset/Charset.html">Standard charsets</a>
35+ * @see <a href="http://download.oracle.com/javase/7 /docs/api/java/nio/charset/Charset.html">Standard charsets</a>
3636 * @version $Id$
3737 * @since 1.4
3838 */
@@ -123,7 +123,7 @@ private static ByteBuffer getByteBuffer(final String string, final Charset chars
123123 * @throws NullPointerException
124124 * Thrown if {@link Charsets#UTF_8} is not initialized, which should never happen since it is
125125 * required by the Java platform specification.
126- * @see <a href="http://download.oracle.com/javase/6 /docs/api/java/nio/charset/Charset.html">Standard charsets</a>
126+ * @see <a href="http://download.oracle.com/javase/7 /docs/api/java/nio/charset/Charset.html">Standard charsets</a>
127127 * @see #getBytesUnchecked(String, String)
128128 * @since 1.11
129129 */
@@ -142,7 +142,7 @@ public static ByteBuffer getByteBufferUtf8(final String string) {
142142 * Thrown if {@link Charsets#ISO_8859_1} is not initialized, which should never happen since it is
143143 * required by the Java platform specification.
144144 * @since As of 1.7, throws {@link NullPointerException} instead of UnsupportedEncodingException
145- * @see <a href="http://download.oracle.com/javase/6 /docs/api/java/nio/charset/Charset.html">Standard charsets</a>
145+ * @see <a href="http://download.oracle.com/javase/7 /docs/api/java/nio/charset/Charset.html">Standard charsets</a>
146146 * @see #getBytesUnchecked(String, String)
147147 */
148148 public static byte [] getBytesIso8859_1 (final String string ) {
@@ -191,7 +191,7 @@ public static byte[] getBytesUnchecked(final String string, final String charset
191191 * Thrown if {@link Charsets#US_ASCII} is not initialized, which should never happen since it is
192192 * required by the Java platform specification.
193193 * @since As of 1.7, throws {@link NullPointerException} instead of UnsupportedEncodingException
194- * @see <a href="http://download.oracle.com/javase/6 /docs/api/java/nio/charset/Charset.html">Standard charsets</a>
194+ * @see <a href="http://download.oracle.com/javase/7 /docs/api/java/nio/charset/Charset.html">Standard charsets</a>
195195 * @see #getBytesUnchecked(String, String)
196196 */
197197 public static byte [] getBytesUsAscii (final String string ) {
@@ -209,7 +209,7 @@ public static byte[] getBytesUsAscii(final String string) {
209209 * Thrown if {@link Charsets#UTF_16} is not initialized, which should never happen since it is
210210 * required by the Java platform specification.
211211 * @since As of 1.7, throws {@link NullPointerException} instead of UnsupportedEncodingException
212- * @see <a href="http://download.oracle.com/javase/6 /docs/api/java/nio/charset/Charset.html">Standard charsets</a>
212+ * @see <a href="http://download.oracle.com/javase/7 /docs/api/java/nio/charset/Charset.html">Standard charsets</a>
213213 * @see #getBytesUnchecked(String, String)
214214 */
215215 public static byte [] getBytesUtf16 (final String string ) {
@@ -227,7 +227,7 @@ public static byte[] getBytesUtf16(final String string) {
227227 * Thrown if {@link Charsets#UTF_16BE} is not initialized, which should never happen since it is
228228 * required by the Java platform specification.
229229 * @since As of 1.7, throws {@link NullPointerException} instead of UnsupportedEncodingException
230- * @see <a href="http://download.oracle.com/javase/6 /docs/api/java/nio/charset/Charset.html">Standard charsets</a>
230+ * @see <a href="http://download.oracle.com/javase/7 /docs/api/java/nio/charset/Charset.html">Standard charsets</a>
231231 * @see #getBytesUnchecked(String, String)
232232 */
233233 public static byte [] getBytesUtf16Be (final String string ) {
@@ -245,7 +245,7 @@ public static byte[] getBytesUtf16Be(final String string) {
245245 * Thrown if {@link Charsets#UTF_16LE} is not initialized, which should never happen since it is
246246 * required by the Java platform specification.
247247 * @since As of 1.7, throws {@link NullPointerException} instead of UnsupportedEncodingException
248- * @see <a href="http://download.oracle.com/javase/6 /docs/api/java/nio/charset/Charset.html">Standard charsets</a>
248+ * @see <a href="http://download.oracle.com/javase/7 /docs/api/java/nio/charset/Charset.html">Standard charsets</a>
249249 * @see #getBytesUnchecked(String, String)
250250 */
251251 public static byte [] getBytesUtf16Le (final String string ) {
@@ -263,7 +263,7 @@ public static byte[] getBytesUtf16Le(final String string) {
263263 * Thrown if {@link Charsets#UTF_8} is not initialized, which should never happen since it is
264264 * required by the Java platform specification.
265265 * @since As of 1.7, throws {@link NullPointerException} instead of UnsupportedEncodingException
266- * @see <a href="http://download.oracle.com/javase/6 /docs/api/java/nio/charset/Charset.html">Standard charsets</a>
266+ * @see <a href="http://download.oracle.com/javase/7 /docs/api/java/nio/charset/Charset.html">Standard charsets</a>
267267 * @see #getBytesUnchecked(String, String)
268268 */
269269 public static byte [] getBytesUtf8 (final String string ) {
0 commit comments