@@ -900,7 +900,7 @@ public int fromHexDigit(int ch) {
900
900
* Returns a value parsed from two hexadecimal characters in a string.
901
901
* The characters in the range from {@code index} to {@code index + 1},
902
902
* inclusive, must be valid hex digits according to {@link #fromHexDigit(int)}.
903
- * The delimiter, prefix and suffix are not used.
903
+ * The delimiter, prefix, suffix, and uppercase parameters are not used.
904
904
*
905
905
* @param string a CharSequence containing the characters
906
906
* @param index the index of the first character of the range
@@ -921,7 +921,7 @@ private int fromHexDigits(CharSequence string, int index) {
921
921
* Returns the {@code int} value parsed from a string of up to eight hexadecimal characters.
922
922
* The hexadecimal characters are parsed from most significant to least significant
923
923
* using {@link #fromHexDigit(int)}.
924
- * The delimiter, prefix and suffix are not used.
924
+ * The delimiter, prefix, suffix, and uppercase parameters are not used.
925
925
*
926
926
* @param string a CharSequence containing up to eight hexadecimal characters
927
927
* @return the value parsed from the string
@@ -943,7 +943,7 @@ public int fromHexDigits(CharSequence string) {
943
943
* characters.
944
944
* The characters in the range {@code fromIndex} to {@code toIndex}, exclusive,
945
945
* are parsed from most significant to least significant using {@link #fromHexDigit(int)}.
946
- * The delimiter, prefix and suffix are not used.
946
+ * The delimiter, prefix, suffix, and uppercase parameters are not used.
947
947
*
948
948
* @param string a CharSequence containing the characters
949
949
* @param fromIndex the initial index of the range, inclusive
@@ -969,7 +969,7 @@ public int fromHexDigits(CharSequence string, int fromIndex, int toIndex) {
969
969
* Returns the long value parsed from a string of up to sixteen hexadecimal characters.
970
970
* The hexadecimal characters are parsed from most significant to least significant
971
971
* using {@link #fromHexDigit(int)}.
972
- * The delimiter, prefix and suffix are not used.
972
+ * The delimiter, prefix, suffix, and uppercase parameters are not used.
973
973
*
974
974
* @param string a CharSequence containing up to sixteen hexadecimal characters
975
975
* @return the value parsed from the string
@@ -991,7 +991,7 @@ public long fromHexDigitsToLong(CharSequence string) {
991
991
* characters.
992
992
* The characters in the range {@code fromIndex} to {@code toIndex}, exclusive,
993
993
* are parsed from most significant to least significant using {@link #fromHexDigit(int)}.
994
- * The delimiter, prefix and suffix are not used.
994
+ * The delimiter, prefix, suffix, and uppercase parameters are not used.
995
995
*
996
996
* @param string a CharSequence containing the characters
997
997
* @param fromIndex the initial index of the range, inclusive
0 commit comments