diff -r 78e3d021d528 -r 5c1037124466 jdk/src/share/classes/java/lang/AbstractStringBuilder.java
--- a/jdk/src/share/classes/java/lang/AbstractStringBuilder.java Tue Sep 09 17:01:45 2008 +0200
+++ b/jdk/src/share/classes/java/lang/AbstractStringBuilder.java Tue Sep 09 15:20:07 2008 -0700
@@ -42,7 +42,7 @@
/**
* The value is used for character storage.
*/
- char value[];
+ char[] value;
/**
* The count is the number of characters used.
@@ -333,8 +333,7 @@
* dst.length
*
*/
- public void getChars(int srcBegin, int srcEnd, char dst[],
- int dstBegin)
+ public void getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin)
{
if (srcBegin < 0)
throw new StringIndexOutOfBoundsException(srcBegin);
@@ -366,14 +365,14 @@
}
/**
- * Appends the string representation of the Object
- * argument.
+ * Appends the string representation of the {@code Object} argument.
*
- * The argument is converted to a string as if by the method
- * String.valueOf
, and the characters of that
- * string are then appended to this sequence.
+ * The overall effect is exactly as if the argument were converted
+ * to a string by the method {@link String#valueOf(Object)},
+ * and the characters of that string were then
+ * {@link #append(String) appended} to this character sequence.
*
- * @param obj an Object
.
+ * @param obj an {@code Object}.
* @return a reference to this object.
*/
public AbstractStringBuilder append(Object obj) {
@@ -383,17 +382,17 @@
/**
* Appends the specified string to this character sequence.
*
- * The characters of the String
argument are appended, in
+ * The characters of the {@code String} argument are appended, in
* order, increasing the length of this sequence by the length of the
- * argument. If str
is null
, then the four
- * characters "null"
are appended.
+ * argument. If {@code str} is {@code null}, then the four
+ * characters {@code "null"} are appended.
*
* Let n be the length of this character sequence just prior to
- * execution of the append
method. Then the character at
+ * execution of the {@code append} method. Then the character at
* index k in the new character sequence is equal to the character
* at index k in the old character sequence, if k is less
* than n; otherwise, it is equal to the character at index
- * k-n in the argument str
.
+ * k-n in the argument {@code str}.
*
* @param str a string.
* @return a reference to this object.
@@ -435,33 +434,33 @@
}
/**
- * Appends a subsequence of the specified CharSequence
to this
+ * Appends a subsequence of the specified {@code CharSequence} to this
* sequence.
*
- * Characters of the argument s
, starting at
- * index start
, are appended, in order, to the contents of
- * this sequence up to the (exclusive) index end
. The length
- * of this sequence is increased by the value of end - start
.
+ * Characters of the argument {@code s}, starting at
+ * index {@code start}, are appended, in order, to the contents of
+ * this sequence up to the (exclusive) index {@code end}. The length
+ * of this sequence is increased by the value of {@code end - start}.
*
* Let n be the length of this character sequence just prior to
- * execution of the append
method. Then the character at
+ * execution of the {@code append} method. Then the character at
* index k in this character sequence becomes equal to the
* character at index k in this sequence, if k is less than
* n; otherwise, it is equal to the character at index
- * k+start-n in the argument s
.
+ * k+start-n in the argument {@code s}.
*
- * If s
is null
, then this method appends
+ * If {@code s} is {@code null}, then this method appends
* characters as if the s parameter was a sequence containing the four
- * characters "null"
.
+ * characters {@code "null"}.
*
* @param s the sequence to append.
* @param start the starting index of the subsequence to be appended.
* @param end the end index of the subsequence to be appended.
* @return a reference to this object.
* @throws IndexOutOfBoundsException if
- * start
or end
are negative, or
- * start
is greater than end
or
- * end
is greater than s.length()
+ * {@code start} is negative, or
+ * {@code start} is greater than {@code end} or
+ * {@code end} is greater than {@code s.length()}
*/
public AbstractStringBuilder append(CharSequence s, int start, int end) {
if (s == null)
@@ -483,22 +482,22 @@
}
/**
- * Appends the string representation of the char
array
+ * Appends the string representation of the {@code char} array
* argument to this sequence.
*
* The characters of the array argument are appended, in order, to * the contents of this sequence. The length of this sequence * increases by the length of the argument. *
- * The overall effect is exactly as if the argument were converted to
- * a string by the method {@link String#valueOf(char[])} and the
- * characters of that string were then {@link #append(String) appended}
- * to this character sequence.
+ * The overall effect is exactly as if the argument were converted
+ * to a string by the method {@link String#valueOf(char[])},
+ * and the characters of that string were then
+ * {@link #append(String) appended} to this character sequence.
*
* @param str the characters to be appended.
* @return a reference to this object.
*/
- public AbstractStringBuilder append(char str[]) {
+ public AbstractStringBuilder append(char[] str) {
int newCount = count + str.length;
if (newCount > value.length)
expandCapacity(newCount);
@@ -509,22 +508,25 @@
/**
* Appends the string representation of a subarray of the
- * char
array argument to this sequence.
+ * {@code char} array argument to this sequence.
*
- * Characters of the char
array str
, starting at
- * index offset
, are appended, in order, to the contents
+ * Characters of the {@code char} array {@code str}, starting at
+ * index {@code offset}, are appended, in order, to the contents
* of this sequence. The length of this sequence increases
- * by the value of len
.
+ * by the value of {@code len}.
*
- * The overall effect is exactly as if the arguments were converted to
- * a string by the method {@link String#valueOf(char[],int,int)} and the
- * characters of that string were then {@link #append(String) appended}
- * to this character sequence.
+ * The overall effect is exactly as if the arguments were converted
+ * to a string by the method {@link String#valueOf(char[],int,int)},
+ * and the characters of that string were then
+ * {@link #append(String) appended} to this character sequence.
*
* @param str the characters to be appended.
- * @param offset the index of the first char
to append.
- * @param len the number of char
s to append.
+ * @param offset the index of the first {@code char} to append.
+ * @param len the number of {@code char}s to append.
* @return a reference to this object.
+ * @throws IndexOutOfBoundsException
+ * if {@code offset < 0} or {@code len < 0}
+ * or {@code offset+len > str.length}
*/
public AbstractStringBuilder append(char str[], int offset, int len) {
int newCount = count + len;
@@ -536,14 +538,15 @@
}
/**
- * Appends the string representation of the boolean
+ * Appends the string representation of the {@code boolean}
* argument to the sequence.
*
- * The argument is converted to a string as if by the method
- * String.valueOf
, and the characters of that
- * string are then appended to this sequence.
+ * The overall effect is exactly as if the argument were converted
+ * to a string by the method {@link String#valueOf(boolean)},
+ * and the characters of that string were then
+ * {@link #append(String) appended} to this character sequence.
*
- * @param b a boolean
.
+ * @param b a {@code boolean}.
* @return a reference to this object.
*/
public AbstractStringBuilder append(boolean b) {
@@ -569,18 +572,18 @@
}
/**
- * Appends the string representation of the char
+ * Appends the string representation of the {@code char}
* argument to this sequence.
*
* The argument is appended to the contents of this sequence.
- * The length of this sequence increases by 1
.
+ * The length of this sequence increases by {@code 1}.
*
- * The overall effect is exactly as if the argument were converted to
- * a string by the method {@link String#valueOf(char)} and the character
- * in that string were then {@link #append(String) appended} to this
- * character sequence.
+ * The overall effect is exactly as if the argument were converted
+ * to a string by the method {@link String#valueOf(char)},
+ * and the character in that string were then
+ * {@link #append(String) appended} to this character sequence.
*
- * @param c a char
.
+ * @param c a {@code char}.
* @return a reference to this object.
*/
public AbstractStringBuilder append(char c) {
@@ -592,14 +595,15 @@
}
/**
- * Appends the string representation of the int
+ * Appends the string representation of the {@code int}
* argument to this sequence.
*
- * The argument is converted to a string as if by the method
- * String.valueOf
, and the characters of that
- * string are then appended to this sequence.
+ * The overall effect is exactly as if the argument were converted
+ * to a string by the method {@link String#valueOf(int)},
+ * and the characters of that string were then
+ * {@link #append(String) appended} to this character sequence.
*
- * @param i an int
.
+ * @param i an {@code int}.
* @return a reference to this object.
*/
public AbstractStringBuilder append(int i) {
@@ -618,14 +622,15 @@
}
/**
- * Appends the string representation of the long
+ * Appends the string representation of the {@code long}
* argument to this sequence.
*
- * The argument is converted to a string as if by the method
- * String.valueOf
, and the characters of that
- * string are then appended to this sequence.
+ * The overall effect is exactly as if the argument were converted
+ * to a string by the method {@link String#valueOf(long)},
+ * and the characters of that string were then
+ * {@link #append(String) appended} to this character sequence.
*
- * @param l a long
.
+ * @param l a {@code long}.
* @return a reference to this object.
*/
public AbstractStringBuilder append(long l) {
@@ -644,14 +649,15 @@
}
/**
- * Appends the string representation of the float
+ * Appends the string representation of the {@code float}
* argument to this sequence.
*
- * The argument is converted to a string as if by the method
- * String.valueOf
, and the characters of that
- * string are then appended to this string sequence.
+ * The overall effect is exactly as if the argument were converted
+ * to a string by the method {@link String#valueOf(float)},
+ * and the characters of that string were then
+ * {@link #append(String) appended} to this character sequence.
*
- * @param f a float
.
+ * @param f a {@code float}.
* @return a reference to this object.
*/
public AbstractStringBuilder append(float f) {
@@ -660,14 +666,15 @@
}
/**
- * Appends the string representation of the double
+ * Appends the string representation of the {@code double}
* argument to this sequence.
*
- * The argument is converted to a string as if by the method
- * String.valueOf
, and the characters of that
- * string are then appended to this sequence.
+ * The overall effect is exactly as if the argument were converted
+ * to a string by the method {@link String#valueOf(double)},
+ * and the characters of that string were then
+ * {@link #append(String) appended} to this character sequence.
*
- * @param d a double
.
+ * @param d a {@code double}.
* @return a reference to this object.
*/
public AbstractStringBuilder append(double d) {
@@ -677,17 +684,17 @@
/**
* Removes the characters in a substring of this sequence.
- * The substring begins at the specified start
and extends to
- * the character at index end - 1
or to the end of the
+ * The substring begins at the specified {@code start} and extends to
+ * the character at index {@code end - 1} or to the end of the
* sequence if no such character exists. If
- * start
is equal to end
, no changes are made.
+ * {@code start} is equal to {@code end}, no changes are made.
*
* @param start The beginning index, inclusive.
* @param end The ending index, exclusive.
* @return This object.
- * @throws StringIndexOutOfBoundsException if start
- * is negative, greater than length()
, or
- * greater than end
.
+ * @throws StringIndexOutOfBoundsException if {@code start}
+ * is negative, greater than {@code length()}, or
+ * greater than {@code end}.
*/
public AbstractStringBuilder delete(int start, int end) {
if (start < 0)
@@ -705,7 +712,7 @@
}
/**
- * Appends the string representation of the codePoint
+ * Appends the string representation of the {@code codePoint}
* argument to this sequence.
*
*
The argument is appended to the contents of this sequence. @@ -713,15 +720,15 @@ * {@link Character#charCount(int) Character.charCount(codePoint)}. * *
The overall effect is exactly as if the argument were
- * converted to a char
array by the method {@link
- * Character#toChars(int)} and the character in that array were
- * then {@link #append(char[]) appended} to this character
+ * converted to a {@code char} array by the method
+ * {@link Character#toChars(int)} and the character in that array
+ * were then {@link #append(char[]) appended} to this character
* sequence.
*
* @param codePoint a Unicode code point
* @return a reference to this object.
* @exception IllegalArgumentException if the specified
- * codePoint
isn't a valid Unicode code point
+ * {@code codePoint} isn't a valid Unicode code point
*/
public AbstractStringBuilder appendCodePoint(int codePoint) {
if (!Character.isValidCodePoint(codePoint)) {
@@ -879,27 +886,27 @@
}
/**
- * Inserts the string representation of a subarray of the str
+ * Inserts the string representation of a subarray of the {@code str}
* array argument into this sequence. The subarray begins at the
- * specified offset
and extends len
char
s.
+ * specified {@code offset} and extends {@code len} {@code char}s.
* The characters of the subarray are inserted into this sequence at
- * the position indicated by index
. The length of this
- * sequence increases by len
char
s.
+ * the position indicated by {@code index}. The length of this
+ * sequence increases by {@code len} {@code char}s.
*
* @param index position at which to insert subarray.
- * @param str A char
array.
- * @param offset the index of the first char
in subarray to
+ * @param str A {@code char} array.
+ * @param offset the index of the first {@code char} in subarray to
* be inserted.
- * @param len the number of char
s in the subarray to
+ * @param len the number of {@code char}s in the subarray to
* be inserted.
* @return This object
- * @throws StringIndexOutOfBoundsException if index
- * is negative or greater than length()
, or
- * offset
or len
are negative, or
- * (offset+len)
is greater than
- * str.length
.
+ * @throws StringIndexOutOfBoundsException if {@code index}
+ * is negative or greater than {@code length()}, or
+ * {@code offset} or {@code len} are negative, or
+ * {@code (offset+len)} is greater than
+ * {@code str.length}.
*/
- public AbstractStringBuilder insert(int index, char str[], int offset,
+ public AbstractStringBuilder insert(int index, char[] str, int offset,
int len)
{
if ((index < 0) || (index > length()))
@@ -918,20 +925,21 @@
}
/**
- * Inserts the string representation of the Object
+ * Inserts the string representation of the {@code Object}
* argument into this character sequence.
*
- * The second argument is converted to a string as if by the method
- * String.valueOf
, and the characters of that
- * string are then inserted into this sequence at the indicated
- * offset.
+ * The overall effect is exactly as if the second argument were
+ * converted to a string by the method {@link String#valueOf(Object)},
+ * and the characters of that string were then
+ * {@link #insert(int,String) inserted} into this character
+ * sequence at the indicated offset.
*
- * The offset argument must be greater than or equal to
- * 0
, and less than or equal to the length of this
- * sequence.
+ * The {@code offset} argument must be greater than or equal to
+ * {@code 0}, and less than or equal to the {@linkplain #length() length}
+ * of this sequence.
*
* @param offset the offset.
- * @param obj an Object
.
+ * @param obj an {@code Object}.
* @return a reference to this object.
* @throws StringIndexOutOfBoundsException if the offset is invalid.
*/
@@ -942,28 +950,28 @@
/**
* Inserts the string into this character sequence.
*
- * The characters of the String
argument are inserted, in
+ * The characters of the {@code String} argument are inserted, in
* order, into this sequence at the indicated offset, moving up any
* characters originally above that position and increasing the length
* of this sequence by the length of the argument. If
- * str
is null
, then the four characters
- * "null"
are inserted into this sequence.
+ * {@code str} is {@code null}, then the four characters
+ * {@code "null"} are inserted into this sequence.
*
* The character at index k in the new character sequence is * equal to: *
offset
- * -offset
in the
- * argument str
, if k is not less than
- * offset
but is less than offset+str.length()
- * -str.length()
in the
+ * k is less than {@code offset}
+ * offset+str.length()
+ * {@code offset+str.length()}
*
- * The offset argument must be greater than or equal to
- * 0
, and less than or equal to the length of this
- * sequence.
+ * The {@code offset} argument must be greater than or equal to
+ * {@code 0}, and less than or equal to the {@linkplain #length() length}
+ * of this sequence.
*
* @param offset the offset.
* @param str a string.
@@ -986,27 +994,30 @@
}
/**
- * Inserts the string representation of the char
array
+ * Inserts the string representation of the {@code char} array
* argument into this sequence.
*
* The characters of the array argument are inserted into the
* contents of this sequence at the position indicated by
- * offset
. The length of this sequence increases by
+ * {@code offset}. The length of this sequence increases by
* the length of the argument.
*
- * The overall effect is exactly as if the argument were converted to
- * a string by the method {@link String#valueOf(char[])} and the
- * characters of that string were then
- * {@link #insert(int,String) inserted} into this
- * character sequence at the position indicated by
- * offset
.
+ * The overall effect is exactly as if the second argument were
+ * converted to a string by the method {@link String#valueOf(char[])},
+ * and the characters of that string were then
+ * {@link #insert(int,String) inserted} into this character
+ * sequence at the indicated offset.
+ *
+ * The {@code offset} argument must be greater than or equal to
+ * {@code 0}, and less than or equal to the {@linkplain #length() length}
+ * of this sequence.
*
* @param offset the offset.
* @param str a character array.
* @return a reference to this object.
* @throws StringIndexOutOfBoundsException if the offset is invalid.
*/
- public AbstractStringBuilder insert(int offset, char str[]) {
+ public AbstractStringBuilder insert(int offset, char[] str) {
if ((offset < 0) || (offset > length()))
throw new StringIndexOutOfBoundsException(offset);
int len = str.length;
@@ -1020,18 +1031,20 @@
}
/**
- * Inserts the specified CharSequence
into this sequence.
+ * Inserts the specified {@code CharSequence} into this sequence.
*
- * The characters of the CharSequence
argument are inserted,
+ * The characters of the {@code CharSequence} argument are inserted,
* in order, into this sequence at the indicated offset, moving up
* any characters originally above that position and increasing the length
* of this sequence by the length of the argument s.
*
* The result of this method is exactly the same as if it were an - * invocation of this object's insert(dstOffset, s, 0, s.length()) method. + * invocation of this object's + * {@link #insert(int,CharSequence,int,int) insert}(dstOffset, s, 0, s.length()) + * method. * - *
If s
is null
, then the four characters
- * "null"
are inserted into this sequence.
+ *
If {@code s} is {@code null}, then the four characters
+ * {@code "null"} are inserted into this sequence.
*
* @param dstOffset the offset.
* @param s the sequence to be inserted
@@ -1047,51 +1060,51 @@
}
/**
- * Inserts a subsequence of the specified CharSequence
into
+ * Inserts a subsequence of the specified {@code CharSequence} into
* this sequence.
*
- * The subsequence of the argument s
specified by
- * start
and end
are inserted,
+ * The subsequence of the argument {@code s} specified by
+ * {@code start} and {@code end} are inserted,
* in order, into this sequence at the specified destination offset, moving
* up any characters originally above that position. The length of this
- * sequence is increased by end - start
.
+ * sequence is increased by {@code end - start}.
*
* The character at index k in this sequence becomes equal to: *
dstOffset
- * +start-dstOffset
in
- * the argument s
, if k is greater than or equal to
- * dstOffset
but is less than dstOffset+end-start
- * -(end-start)
in this
+ * k is less than {@code dstOffset}
+ * dstOffset+end-start
+ * {@code dstOffset+end-start}
*
- * The dstOffset argument must be greater than or equal to
- * 0
, and less than or equal to the length of this
- * sequence.
+ * The {@code dstOffset} argument must be greater than or equal to
+ * {@code 0}, and less than or equal to the {@linkplain #length() length}
+ * of this sequence.
*
The start argument must be nonnegative, and not greater than
- * end
.
+ * {@code end}.
*
The end argument must be greater than or equal to
- * start
, and less than or equal to the length of s.
+ * {@code start}, and less than or equal to the length of s.
*
- *
If s
is null
, then this method inserts
+ *
If {@code s} is {@code null}, then this method inserts
* characters as if the s parameter was a sequence containing the four
- * characters "null"
.
+ * characters {@code "null"}.
*
* @param dstOffset the offset in this sequence.
* @param s the sequence to be inserted.
* @param start the starting index of the subsequence to be inserted.
* @param end the end index of the subsequence to be inserted.
* @return a reference to this object.
- * @throws IndexOutOfBoundsException if dstOffset
- * is negative or greater than this.length()
, or
- * start
or end
are negative, or
- * start
is greater than end
or
- * end
is greater than s.length()
+ * @throws IndexOutOfBoundsException if {@code dstOffset}
+ * is negative or greater than {@code this.length()}, or
+ * {@code start} or {@code end} are negative, or
+ * {@code start} is greater than {@code end} or
+ * {@code end} is greater than {@code s.length()}
*/
public AbstractStringBuilder insert(int dstOffset, CharSequence s,
- int start, int end) {
+ int start, int end) {
if (s == null)
s = "null";
if ((dstOffset < 0) || (dstOffset > this.length()))
@@ -1115,20 +1128,21 @@
}
/**
- * Inserts the string representation of the boolean
+ * Inserts the string representation of the {@code boolean}
* argument into this sequence.
*
- * The second argument is converted to a string as if by the method
- * String.valueOf
, and the characters of that
- * string are then inserted into this sequence at the indicated
- * offset.
+ * The overall effect is exactly as if the second argument were
+ * converted to a string by the method {@link String#valueOf(boolean)},
+ * and the characters of that string were then
+ * {@link #insert(int,String) inserted} into this character
+ * sequence at the indicated offset.
*
- * The offset argument must be greater than or equal to
- * 0
, and less than or equal to the length of this
- * sequence.
+ * The {@code offset} argument must be greater than or equal to
+ * {@code 0}, and less than or equal to the {@linkplain #length() length}
+ * of this sequence.
*
* @param offset the offset.
- * @param b a boolean
.
+ * @param b a {@code boolean}.
* @return a reference to this object.
* @throws StringIndexOutOfBoundsException if the offset is invalid.
*/
@@ -1137,25 +1151,21 @@
}
/**
- * Inserts the string representation of the char
+ * Inserts the string representation of the {@code char}
* argument into this sequence.
*
- * The second argument is inserted into the contents of this sequence
- * at the position indicated by offset
. The length
- * of this sequence increases by one.
+ * The overall effect is exactly as if the second argument were
+ * converted to a string by the method {@link String#valueOf(char)},
+ * and the character in that string were then
+ * {@link #insert(int,String) inserted} into this character
+ * sequence at the indicated offset.
*
- * The overall effect is exactly as if the argument were converted to
- * a string by the method {@link String#valueOf(char)} and the character
- * in that string were then {@link #insert(int, String) inserted} into
- * this character sequence at the position indicated by
- * offset
.
- *
- * The offset argument must be greater than or equal to
- * 0
, and less than or equal to the length of this
- * sequence.
+ * The {@code offset} argument must be greater than or equal to
+ * {@code 0}, and less than or equal to the {@linkplain #length() length}
+ * of this sequence.
*
* @param offset the offset.
- * @param c a char
.
+ * @param c a {@code char}.
* @return a reference to this object.
* @throws IndexOutOfBoundsException if the offset is invalid.
*/
@@ -1170,20 +1180,21 @@
}
/**
- * Inserts the string representation of the second int
+ * Inserts the string representation of the second {@code int}
* argument into this sequence.
*
- * The second argument is converted to a string as if by the method
- * String.valueOf
, and the characters of that
- * string are then inserted into this sequence at the indicated
- * offset.
+ * The overall effect is exactly as if the second argument were
+ * converted to a string by the method {@link String#valueOf(int)},
+ * and the characters of that string were then
+ * {@link #insert(int,String) inserted} into this character
+ * sequence at the indicated offset.
*
- * The offset argument must be greater than or equal to
- * 0
, and less than or equal to the length of this
- * sequence.
+ * The {@code offset} argument must be greater than or equal to
+ * {@code 0}, and less than or equal to the {@linkplain #length() length}
+ * of this sequence.
*
* @param offset the offset.
- * @param i an int
.
+ * @param i an {@code int}.
* @return a reference to this object.
* @throws StringIndexOutOfBoundsException if the offset is invalid.
*/
@@ -1192,20 +1203,21 @@
}
/**
- * Inserts the string representation of the long
+ * Inserts the string representation of the {@code long}
* argument into this sequence.
*
- * The second argument is converted to a string as if by the method
- * String.valueOf
, and the characters of that
- * string are then inserted into this sequence at the position
- * indicated by offset
.
+ * The overall effect is exactly as if the second argument were
+ * converted to a string by the method {@link String#valueOf(long)},
+ * and the characters of that string were then
+ * {@link #insert(int,String) inserted} into this character
+ * sequence at the indicated offset.
*
- * The offset argument must be greater than or equal to
- * 0
, and less than or equal to the length of this
- * sequence.
+ * The {@code offset} argument must be greater than or equal to
+ * {@code 0}, and less than or equal to the {@linkplain #length() length}
+ * of this sequence.
*
* @param offset the offset.
- * @param l a long
.
+ * @param l a {@code long}.
* @return a reference to this object.
* @throws StringIndexOutOfBoundsException if the offset is invalid.
*/
@@ -1214,20 +1226,21 @@
}
/**
- * Inserts the string representation of the float
+ * Inserts the string representation of the {@code float}
* argument into this sequence.
*
- * The second argument is converted to a string as if by the method
- * String.valueOf
, and the characters of that
- * string are then inserted into this sequence at the indicated
- * offset.
+ * The overall effect is exactly as if the second argument were
+ * converted to a string by the method {@link String#valueOf(float)},
+ * and the characters of that string were then
+ * {@link #insert(int,String) inserted} into this character
+ * sequence at the indicated offset.
*
- * The offset argument must be greater than or equal to
- * 0
, and less than or equal to the length of this
- * sequence.
+ * The {@code offset} argument must be greater than or equal to
+ * {@code 0}, and less than or equal to the {@linkplain #length() length}
+ * of this sequence.
*
* @param offset the offset.
- * @param f a float
.
+ * @param f a {@code float}.
* @return a reference to this object.
* @throws StringIndexOutOfBoundsException if the offset is invalid.
*/
@@ -1236,20 +1249,21 @@
}
/**
- * Inserts the string representation of the double
+ * Inserts the string representation of the {@code double}
* argument into this sequence.
*
- * The second argument is converted to a string as if by the method
- * String.valueOf
, and the characters of that
- * string are then inserted into this sequence at the indicated
- * offset.
+ * The overall effect is exactly as if the second argument were
+ * converted to a string by the method {@link String#valueOf(double)},
+ * and the characters of that string were then
+ * {@link #insert(int,String) inserted} into this character
+ * sequence at the indicated offset.
*
- * The offset argument must be greater than or equal to
- * 0
, and less than or equal to the length of this
- * sequence.
+ * The {@code offset} argument must be greater than or equal to
+ * {@code 0}, and less than or equal to the {@linkplain #length() length}
+ * of this sequence.
*
* @param offset the offset.
- * @param d a double
.
+ * @param d a {@code double}.
* @return a reference to this object.
* @throws StringIndexOutOfBoundsException if the offset is invalid.
*/