@@ -154,13 +154,13 @@ public class Base64 extends BaseNCodec {
154154
155155 /**
156156 * Convenience variable to help us determine when our buffer is going to run out of room and needs resizing.
157- * < code> decodeSize = 3 + lineSeparator.length;</code>
157+ * {@ code decodeSize = 3 + lineSeparator.length;}
158158 */
159159 private final int decodeSize ;
160160
161161 /**
162162 * Convenience variable to help us determine when our buffer is going to run out of room and needs resizing.
163- * < code> encodeSize = 4 + lineSeparator.length;</code>
163+ * {@ code encodeSize = 4 + lineSeparator.length;}
164164 */
165165 private final int encodeSize ;
166166
@@ -189,8 +189,8 @@ public Base64() {
189189 * </p>
190190 *
191191 * @param urlSafe
192- * if < code> true</code> , URL-safe encoding is used. In most cases this should be set to
193- * < code> false</code> .
192+ * if {@ code true} , URL-safe encoding is used. In most cases this should be set to
193+ * {@ code false} .
194194 * @since 1.4
195195 */
196196 public Base64 (final boolean urlSafe ) {
@@ -495,8 +495,8 @@ void decode(final byte[] in, int inPos, final int inAvail, final Context context
495495 *
496496 * @param arrayOctet
497497 * byte array to test
498- * @return < code> true</code> if all bytes are valid characters in the Base64 alphabet or if the byte array is empty;
499- * < code> false</code> , otherwise
498+ * @return {@ code true} if all bytes are valid characters in the Base64 alphabet or if the byte array is empty;
499+ * {@ code false} , otherwise
500500 * @deprecated 1.5 Use {@link #isBase64(byte[])}, will be removed in 2.0.
501501 */
502502 @ Deprecated
@@ -505,11 +505,11 @@ public static boolean isArrayByteBase64(final byte[] arrayOctet) {
505505 }
506506
507507 /**
508- * Returns whether or not the < code> octet</code> is in the base 64 alphabet.
508+ * Returns whether or not the {@ code octet} is in the base 64 alphabet.
509509 *
510510 * @param octet
511511 * The value to test
512- * @return < code> true</code> if the value is defined in the the base 64 alphabet, < code> false</code> otherwise.
512+ * @return {@ code true} if the value is defined in the the base 64 alphabet, {@ code false} otherwise.
513513 * @since 1.4
514514 */
515515 public static boolean isBase64 (final byte octet ) {
@@ -522,8 +522,8 @@ public static boolean isBase64(final byte octet) {
522522 *
523523 * @param base64
524524 * String to test
525- * @return < code> true</code> if all characters in the String are valid characters in the Base64 alphabet or if
526- * the String is empty; < code> false</code> , otherwise
525+ * @return {@ code true} if all characters in the String are valid characters in the Base64 alphabet or if
526+ * the String is empty; {@ code false} , otherwise
527527 * @since 1.5
528528 */
529529 public static boolean isBase64 (final String base64 ) {
@@ -536,8 +536,8 @@ public static boolean isBase64(final String base64) {
536536 *
537537 * @param arrayOctet
538538 * byte array to test
539- * @return < code> true</code> if all bytes are valid characters in the Base64 alphabet or if the byte array is empty;
540- * < code> false</code> , otherwise
539+ * @return {@ code true} if all bytes are valid characters in the Base64 alphabet or if the byte array is empty;
540+ * {@ code false} , otherwise
541541 * @since 1.5
542542 */
543543 public static boolean isBase64 (final byte [] arrayOctet ) {
@@ -618,7 +618,7 @@ public static byte[] encodeBase64Chunked(final byte[] binaryData) {
618618 * @param binaryData
619619 * Array containing binary data to encode.
620620 * @param isChunked
621- * if < code> true</code> this encoder will chunk the base64 output into 76 character blocks
621+ * if {@ code true} this encoder will chunk the base64 output into 76 character blocks
622622 * @return Base64-encoded data.
623623 * @throws IllegalArgumentException
624624 * Thrown when the input array needs an output array bigger than {@link Integer#MAX_VALUE}
@@ -633,9 +633,9 @@ public static byte[] encodeBase64(final byte[] binaryData, final boolean isChunk
633633 * @param binaryData
634634 * Array containing binary data to encode.
635635 * @param isChunked
636- * if < code> true</code> this encoder will chunk the base64 output into 76 character blocks
636+ * if {@ code true} this encoder will chunk the base64 output into 76 character blocks
637637 * @param urlSafe
638- * if < code> true</code> this encoder will emit - and _ instead of the usual + and / characters.
638+ * if {@ code true} this encoder will emit - and _ instead of the usual + and / characters.
639639 * <b>Note: no padding is added when encoding using the URL-safe alphabet.</b>
640640 * @return Base64-encoded data.
641641 * @throws IllegalArgumentException
@@ -652,9 +652,9 @@ public static byte[] encodeBase64(final byte[] binaryData, final boolean isChunk
652652 * @param binaryData
653653 * Array containing binary data to encode.
654654 * @param isChunked
655- * if < code> true</code> this encoder will chunk the base64 output into 76 character blocks
655+ * if {@ code true} this encoder will chunk the base64 output into 76 character blocks
656656 * @param urlSafe
657- * if < code> true</code> this encoder will emit - and _ instead of the usual + and / characters.
657+ * if {@ code true} this encoder will emit - and _ instead of the usual + and / characters.
658658 * <b>Note: no padding is added when encoding using the URL-safe alphabet.</b>
659659 * @param maxResultSize
660660 * The maximum result size to accept.
@@ -745,10 +745,10 @@ public static byte[] encodeInteger(final BigInteger bigInt) {
745745 }
746746
747747 /**
748- * Returns a byte-array representation of a < code> BigInteger</code> without sign bit.
748+ * Returns a byte-array representation of a {@ code BigInteger} without sign bit.
749749 *
750750 * @param bigInt
751- * < code> BigInteger</code> to be converted
751+ * {@ code BigInteger} to be converted
752752 * @return a byte array representation of the BigInteger parameter
753753 */
754754 static byte [] toIntegerBytes (final BigInteger bigInt ) {
@@ -776,11 +776,11 @@ static byte[] toIntegerBytes(final BigInteger bigInt) {
776776 }
777777
778778 /**
779- * Returns whether or not the < code> octet</code> is in the Base64 alphabet.
779+ * Returns whether or not the {@ code octet} is in the Base64 alphabet.
780780 *
781781 * @param octet
782782 * The value to test
783- * @return < code> true</code> if the value is defined in the the Base64 alphabet < code> false</code> otherwise.
783+ * @return {@ code true} if the value is defined in the the Base64 alphabet {@ code false} otherwise.
784784 */
785785 @ Override
786786 protected boolean isInAlphabet (final byte octet ) {
0 commit comments