Methods Summary |
---|
public synchronized java.lang.StringBuffer | append(java.lang.Object obj)Appends the string representation of the Object
argument to this string buffer.
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 buffer.
return append(String.valueOf(obj));
|
public native synchronized java.lang.StringBuffer | append(java.lang.String str)Appends the string to this string buffer.
The characters of the String argument are appended, in
order, to the contents of this string buffer, increasing the
length of this string buffer by the length of the argument.
If str is null , then the four characters
"null" are appended to this string buffer.
Let n be the length of the old character sequence, the one
contained in the string buffer just prior to execution of the
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 .
|
public synchronized java.lang.StringBuffer | append(char[] str)Appends the string representation of the char array
argument to this string buffer.
The characters of the array argument are appended, in order, to
the contents of this string buffer. The length of this string
buffer 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 StringBuffer object.
int len = str.length;
int newcount = count + len;
if (newcount > value.length)
expandCapacity(newcount);
System.arraycopy(str, 0, value, count, len);
count = newcount;
return this;
|
public synchronized java.lang.StringBuffer | append(char[] str, int offset, int len)Appends the string representation of a subarray of the
char array argument to this string buffer.
Characters of the character array str , starting at
index offset , are appended, in order, to the contents
of this string buffer. The length of this string buffer increases
by the value of 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 StringBuffer object.
int newcount = count + len;
if (newcount > value.length)
expandCapacity(newcount);
System.arraycopy(str, offset, value, count, len);
count = newcount;
return this;
|
public java.lang.StringBuffer | append(boolean b)Appends the string representation of the boolean
argument to the string buffer.
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 buffer.
return append(String.valueOf(b));
|
public synchronized java.lang.StringBuffer | append(char c)Appends the string representation of the char
argument to this string buffer.
The argument is appended to the contents of this string buffer.
The length of this string buffer increases by 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
StringBuffer object.
int newcount = count + 1;
if (newcount > value.length)
expandCapacity(newcount);
value[count++] = c;
return this;
|
public native java.lang.StringBuffer | append(int i)Appends the string representation of the int
argument to this string buffer.
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 buffer.
|
public java.lang.StringBuffer | append(long l)Appends the string representation of the long
argument to this string buffer.
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 buffer.
return append(String.valueOf(l));
|
public java.lang.StringBuffer | append(float f)Appends the string representation of the float
argument to this string buffer.
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 buffer.
return append(String.valueOf(f));
|
public java.lang.StringBuffer | append(double d)Appends the string representation of the double
argument to this string buffer.
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 buffer.
return append(String.valueOf(d));
|
public int | capacity()Returns the current capacity of the String buffer. The capacity
is the amount of storage available for newly inserted
characters; beyond which an allocation will occur.
return value.length;
|
public synchronized char | charAt(int index)The specified character of the sequence currently represented by
the string buffer, as indicated by the index argument,
is returned. The first character of a string buffer is at index
0 , the next at index 1 , and so on, for
array indexing.
The index argument must be greater than or equal to
0 , and less than the length of this string buffer.
if ((index < 0) || (index >= count)) {
throw new StringIndexOutOfBoundsException(index);
}
return value[index];
|
private final void | copy()Copies the buffer value. This is normally only called when shared
is true. It should only be called from a synchronized method.
char newValue[] = new char[value.length];
System.arraycopy(value, 0, newValue, 0, count);
value = newValue;
shared = false;
|
public synchronized java.lang.StringBuffer | delete(int start, int end)Removes the characters in a substring of this StringBuffer .
The substring begins at the specified start and extends to
the character at index end - 1 or to the end of the
StringBuffer if no such character exists. If
start is equal to end , no changes are made.
if (start < 0)
throw new StringIndexOutOfBoundsException(start);
if (end > count)
end = count;
if (start > end)
throw new StringIndexOutOfBoundsException();
int len = end - start;
if (len > 0) {
if (shared)
copy();
System.arraycopy(value, start+len, value, start, count-end);
count -= len;
}
return this;
|
public synchronized java.lang.StringBuffer | deleteCharAt(int index)Removes the character at the specified position in this
StringBuffer (shortening the StringBuffer
by one character).
if ((index < 0) || (index >= count))
throw new StringIndexOutOfBoundsException();
if (shared)
copy();
System.arraycopy(value, index+1, value, index, count-index-1);
count--;
return this;
|
public synchronized void | ensureCapacity(int minimumCapacity)Ensures that the capacity of the buffer is at least equal to the
specified minimum.
If the current capacity of this string buffer is less than the
argument, then a new internal buffer is allocated with greater
capacity. The new capacity is the larger of:
- The
minimumCapacity argument.
- Twice the old capacity, plus
2 .
If the minimumCapacity argument is nonpositive, this
method takes no action and simply returns.
if (minimumCapacity > value.length) {
expandCapacity(minimumCapacity);
}
|
private void | expandCapacity(int minimumCapacity)This implements the expansion semantics of ensureCapacity but is
unsynchronized for use internally by methods which are already
synchronized.
int newCapacity = (value.length + 1) * 2;
if (newCapacity < 0) {
newCapacity = Integer.MAX_VALUE;
} else if (minimumCapacity > newCapacity) {
newCapacity = minimumCapacity;
}
char newValue[] = new char[newCapacity];
System.arraycopy(value, 0, newValue, 0, count);
value = newValue;
shared = false;
|
public synchronized void | getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin)Characters are copied from this string buffer into the
destination character array dst . The first character to
be copied is at index srcBegin ; the last character to
be copied is at index srcEnd-1 . The total number of
characters to be copied is srcEnd-srcBegin . The
characters are copied into the subarray of dst starting
at index dstBegin and ending at index:
dstbegin + (srcEnd-srcBegin) - 1
if (srcBegin < 0) {
throw new StringIndexOutOfBoundsException(srcBegin);
}
if ((srcEnd < 0) || (srcEnd > count)) {
throw new StringIndexOutOfBoundsException(srcEnd);
}
if (srcBegin > srcEnd) {
throw new StringIndexOutOfBoundsException("srcBegin > srcEnd");
}
System.arraycopy(value, srcBegin, dst, dstBegin, srcEnd - srcBegin);
|
final char[] | getValue() return value;
|
public synchronized java.lang.StringBuffer | insert(int offset, java.lang.Object obj)Inserts the string representation of the Object
argument into this string buffer.
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 string buffer 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
string buffer.
return insert(offset, String.valueOf(obj));
|
public synchronized java.lang.StringBuffer | insert(int offset, java.lang.String str)Inserts the string into this string buffer.
The characters of the String argument are inserted, in
order, into this string buffer at the indicated offset, moving up any
characters originally above that position and increasing the length
of this string buffer by the length of the argument. If
str is null , then the four characters
"null" are inserted into this string buffer.
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
offset
- the character at index k
-offset in the
argument str , if k is not less than
offset but is less than offset+str.length()
- the character at index k
-str.length() in the
old character sequence, if k is not less than
offset+str.length()
The offset argument must be greater than or equal to
0 , and less than or equal to the length of this
string buffer.
if ((offset < 0) || (offset > count)) {
throw new StringIndexOutOfBoundsException();
}
if (str == null) {
str = String.valueOf(str);
}
int len = str.length();
int newcount = count + len;
if (newcount > value.length)
expandCapacity(newcount);
else if (shared)
copy();
System.arraycopy(value, offset, value, offset + len, count - offset);
str.getChars(0, len, value, offset);
count = newcount;
return this;
|
public synchronized java.lang.StringBuffer | insert(int offset, char[] str)Inserts the string representation of the char array
argument into this string buffer.
The characters of the array argument are inserted into the
contents of this string buffer at the position indicated by
offset . The length of this string buffer 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
StringBuffer object at the position indicated by
offset .
if ((offset < 0) || (offset > count)) {
throw new StringIndexOutOfBoundsException();
}
int len = str.length;
int newcount = count + len;
if (newcount > value.length)
expandCapacity(newcount);
else if (shared)
copy();
System.arraycopy(value, offset, value, offset + len, count - offset);
System.arraycopy(str, 0, value, offset, len);
count = newcount;
return this;
|
public java.lang.StringBuffer | insert(int offset, boolean b)Inserts the string representation of the boolean
argument into this string buffer.
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 string buffer 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
string buffer.
return insert(offset, String.valueOf(b));
|
public synchronized java.lang.StringBuffer | insert(int offset, char c)Inserts the string representation of the char
argument into this string buffer.
The second argument is inserted into the contents of this string
buffer at the position indicated by offset . The length
of this string buffer increases by one.
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 StringBuffer object 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
string buffer.
int newcount = count + 1;
if (newcount > value.length)
expandCapacity(newcount);
else if (shared)
copy();
System.arraycopy(value, offset, value, offset + 1, count - offset);
value[offset] = c;
count = newcount;
return this;
|
public java.lang.StringBuffer | insert(int offset, int i)Inserts the string representation of the second int
argument into this string buffer.
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 string buffer 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
string buffer.
return insert(offset, String.valueOf(i));
|
public java.lang.StringBuffer | insert(int offset, long l)Inserts the string representation of the long
argument into this string buffer.
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 string buffer 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
string buffer.
return insert(offset, String.valueOf(l));
|
public java.lang.StringBuffer | insert(int offset, float f)Inserts the string representation of the float
argument into this string buffer.
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 string buffer 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
string buffer.
return insert(offset, String.valueOf(f));
|
public java.lang.StringBuffer | insert(int offset, double d)Inserts the string representation of the double
argument into this string buffer.
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 string buffer 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
string buffer.
return insert(offset, String.valueOf(d));
|
public int | length()Returns the length (character count) of this string buffer.
return count;
|
public synchronized java.lang.StringBuffer | reverse()The character sequence contained in this string buffer is
replaced by the reverse of the sequence.
Let n be the length of the old character sequence, the one
contained in the string buffer just prior to execution of the
reverse method. Then the character at index k in
the new character sequence is equal to the character at index
n-k-1 in the old character sequence.
if (shared) copy();
int n = count - 1;
for (int j = (n-1) >> 1; j >= 0; --j) {
char temp = value[j];
value[j] = value[n - j];
value[n - j] = temp;
}
return this;
|
public synchronized void | setCharAt(int index, char ch)The character at the specified index of this string buffer is set
to ch . The string buffer is altered to represent a new
character sequence that is identical to the old character sequence,
except that it contains the character ch at position
index .
The offset argument must be greater than or equal to
0 , and less than the length of this string buffer.
if ((index < 0) || (index >= count)) {
throw new StringIndexOutOfBoundsException(index);
}
if (shared) copy();
value[index] = ch;
|
public synchronized void | setLength(int newLength)Sets the length of this string buffer.
This string buffer is altered to represent a new character sequence
whose length is specified by the argument. For every nonnegative
index k less than newLength , the character at
index k in the new character sequence is the same as the
character at index k in the old sequence if k is less
than the length of the old character sequence; otherwise, it is the
null character '\u0000' .
In other words, if the newLength argument is less than
the current length of the string buffer, the string buffer is
truncated to contain exactly the number of characters given by the
newLength argument.
If the newLength argument is greater than or equal
to the current length, sufficient null characters
('\u0000' ) are appended to the string buffer so that
length becomes the newLength argument.
The newLength argument must be greater than or equal
to 0 .
if (newLength < 0) {
throw new StringIndexOutOfBoundsException(newLength);
}
if (newLength > value.length) {
expandCapacity(newLength);
}
if (count < newLength) {
if (shared) copy();
for (; count < newLength; count++) {
value[count] = '\0";
}
} else {
count = newLength;
if (shared) {
if (newLength > 0) {
copy();
} else {
// If newLength is zero, assume the StringBuffer is being
// stripped for reuse; Make new buffer of default size
value = new char[16];
shared = false;
}
}
}
|
final void | setShared()public String toString() {
return new String(this);
} shared = true;
|
public native java.lang.String | toString()Converts to a string representing the data in this string buffer.
A new String object is allocated and initialized to
contain the character sequence currently represented by this
string buffer. This String is then returned. Subsequent
changes to the string buffer do not affect the contents of the
String .
Implementation advice: This method can be coded so as to create a new
String object without allocating new memory to hold a
copy of the character sequence. Instead, the string can share the
memory used by the string buffer. Any subsequent operation that alters
the content or capacity of the string buffer must then make a copy of
the internal buffer at that time. This strategy is effective for
reducing the amount of memory allocated by a string concatenation
operation when it is implemented using a string buffer.
|