java.lang.Object | +--java.lang.StringBuffer
Safe:
(package private) static long
serialVersionUID
StringBuffer()
StringBuffer(int length)
length
argument.
StringBuffer(String str)
StringBuffer
append(boolean b)
boolean
argument to the string buffer.
StringBuffer
append(char c)
char
argument to this string buffer.
StringBuffer
append(char[] str)
char
array
argument to this string buffer.
StringBuffer
append(char[] str,
int offset,
int len)
char
array argument to this string buffer.
StringBuffer
append(double d)
double
argument to this string buffer.
StringBuffer
append(float f)
float
argument to this string buffer.
StringBuffer
append(int i)
int
argument to this string buffer.
StringBuffer
append(long l)
long
argument to this string buffer.
StringBuffer
append(Object obj)
Object
argument to this string buffer.
StringBuffer
append(StringBuffer sb)
char
charAt(int index)
index
argument,
is returned.
StringBuffer
delete(int start,
int end)
StringBuffer
.
StringBuffer
deleteCharAt(int index)
StringBuffer
(shortening the StringBuffer
by one character).
void
ensureCapacity(int minimumCapacity)
private void
expandCapacity(int minimumCapacity)
void
getChars(int srcBegin,
int srcEnd,
char[] dst,
int dstBegin)
dst
.
int
indexOf(String str)
int
indexOf(String str,
int fromIndex)
StringBuffer
insert(int offset,
boolean b)
boolean
argument into this string buffer.
StringBuffer
insert(int offset,
char c)
char
argument into this string buffer.
StringBuffer
insert(int offset,
char[] str)
char
array
argument into this string buffer.
StringBuffer
insert(int index,
char[] str,
int offset,
int len)
str
array argument into this string buffer.
StringBuffer
insert(int offset,
double d)
double
argument into this string buffer.
StringBuffer
insert(int offset,
float f)
float
argument into this string buffer.
StringBuffer
insert(int offset,
int i)
int
argument into this string buffer.
StringBuffer
insert(int offset,
long l)
long
argument into this string buffer.
StringBuffer
insert(int offset,
Object obj)
Object
argument into this string buffer.
void
iterate(AssocFunc func)
int
lastIndexOf(String str)
int
lastIndexOf(String str,
int fromIndex)
private void
readObject(ObjectInputStream s)
StringBuffer
replace(int start,
int end,
String str)
StringBuffer
with characters in the specified String
.
StringBuffer
reverse()
void
setCharAt(int index,
char ch)
ch
.
String
snapshot()
CharSequence
subSequence(int start,
int end)
String
substring(int start)
String
that contains a subsequence of
characters currently contained in this StringBuffer
.The
substring begins at the specified index and extends to the end of the
StringBuffer
.
String
substring(int start,
int end)
String
that contains a subsequence of
characters currently contained in this StringBuffer
.
private char[] value
private int count
private boolean shared
static final long serialVersionUID
private static final StringBuffer NULL
public StringBuffer()
public StringBuffer(int length)
length
argument.
length
- the initial capacity.public StringBuffer(String str)
16
plus the length of the string argument.
str
- the initial contents of the buffer.public int length()
length
in interface CharSequence
public int capacity()
private final void copy()
public void ensureCapacity(int minimumCapacity)
minimumCapacity
argument.
2
.
minimumCapacity
argument is nonpositive, this
method takes no action and simply returns.
minimumCapacity
- the minimum desired capacity.private void expandCapacity(int minimumCapacity)
java.lang.StringBuffer#ensureCapacity(int)
public void setLength(int newLength)
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
.
newLength
- the new length of the buffer.java.lang.StringBuffer#length()
public char charAt(int index)
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.
charAt
in interface CharSequence
index
- the index of the desired character.
java.lang.StringBuffer#length()
public void getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin)
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
srcBegin
- start copying at this offset in the string buffer.srcEnd
- stop copying at this offset in the string buffer.dst
- the array to copy the data into.dstBegin
- offset into dst
.public void setCharAt(int index, char ch)
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 index argument must be greater than or equal to
0
, and less than the length of this string buffer.
index
- the index of the character to modify.ch
- the new character.java.lang.StringBuffer#length()
public StringBuffer append(Object obj)
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.
obj
- an Object
.
StringBuffer
object.java.lang.String#valueOf(java.lang.Object)
,
java.lang.StringBuffer#append(java.lang.String)
public StringBuffer append(String str)
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
.
str
- a string.
StringBuffer
.public StringBuffer append(StringBuffer sb)
The characters of the StringBuffer argument are appended, in order, to the contents of this StringBuffer, increasing the length of this StringBuffer by the length of the argument. If sb is null, then the four characters "null" are appended to this StringBuffer.
Let n be the length of the old character sequence, the one
contained in the StringBuffer 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 sb
.
The method ensureCapacity is first called on this StringBuffer with the new buffer length as its argument. (This ensures that the storage of this StringBuffer is adequate to contain the additional characters being appended.)
sb
- the StringBuffer to append.
public StringBuffer append(char[] str)
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 String.valueOf(char[])
and the
characters of that string were then appended
to this StringBuffer
object.
str
- the characters to be appended.
StringBuffer
object.public StringBuffer append(char[] str, int offset, int len)
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 String.valueOf(char[],int,int)
and the
characters of that string were then appended
to this StringBuffer
object.
str
- the characters to be appended.offset
- the index of the first character to append.len
- the number of characters to append.
StringBuffer
object.public StringBuffer append(boolean b)
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.
b
- a boolean
.
StringBuffer
.java.lang.String#valueOf(boolean)
,
java.lang.StringBuffer#append(java.lang.String)
public StringBuffer append(char c)
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 String.valueOf(char)
and the character
in that string were then appended
to this
StringBuffer
object.
c
- a char
.
StringBuffer
object.public StringBuffer append(int i)
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.
i
- an int
.
StringBuffer
object.java.lang.String#valueOf(int)
,
java.lang.StringBuffer#append(java.lang.String)
public StringBuffer append(long l)
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.
l
- a long
.
StringBuffer
object.java.lang.String#valueOf(long)
,
java.lang.StringBuffer#append(java.lang.String)
public StringBuffer append(float f)
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.
f
- a float
.
StringBuffer
object.java.lang.String#valueOf(float)
,
java.lang.StringBuffer#append(java.lang.String)
public StringBuffer append(double d)
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.
d
- a double
.
StringBuffer
object.java.lang.String#valueOf(double)
,
java.lang.StringBuffer#append(java.lang.String)
public StringBuffer delete(int start, int end)
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.
start
- The beginning index, inclusive.end
- The ending index, exclusive.
public StringBuffer deleteCharAt(int index)
StringBuffer
(shortening the StringBuffer
by one character).
index
- Index of character to remove
public StringBuffer replace(int start, int end, String str)
StringBuffer
with characters in the specified String
. 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. First the
characters in the substring are removed and then the specified
String
is inserted at start
. (The
StringBuffer
will be lengthened to accommodate the
specified String if necessary.)
start
- The beginning index, inclusive.end
- The ending index, exclusive.str
- String that will replace previous contents.
public String substring(int start)
String
that contains a subsequence of
characters currently contained in this StringBuffer
.The
substring begins at the specified index and extends to the end of the
StringBuffer
.
start
- The beginning index, inclusive.
public CharSequence subSequence(int start, int end)
An invocation of this method of the form
behaves in exactly the same way as the invocationsb.subSequence(begin, end)
This method is provided so that the StringBuffer class can implement thesb.substring(begin, end)
CharSequence
interface.
subSequence
in interface CharSequence
start
- the start index, inclusive.end
- the end index, exclusive.
IndexOutOfBoundsException
- if start or end are negative,
if end is greater than length(),
or if start is greater than endpublic String substring(int start, int end)
String
that contains a subsequence of
characters currently contained in this StringBuffer
. The
substring begins at the specified start
and
extends to the character at index end - 1
. An
exception is thrown if
start
- The beginning index, inclusive.end
- The ending index, exclusive.
public StringBuffer insert(int index, char[] str, int offset, int len)
str
array argument into this string buffer. The subarray begins at the
specified offset
and extends len
characters.
The characters of the subarray are inserted into this string buffer at
the position indicated by index
. The length of this
StringBuffer
increases by len
characters.
index
- position at which to insert subarray.str
- A character array.offset
- the index of the first character in subarray to
to be inserted.len
- the number of characters in the subarray to
to be inserted.
public StringBuffer insert(int offset, Object obj)
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.
offset
- the offset.obj
- an Object
.
StringBuffer
object.java.lang.String#valueOf(java.lang.Object)
,
java.lang.StringBuffer#insert(int, java.lang.String)
,
java.lang.StringBuffer#length()
public StringBuffer insert(int offset, String str)
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:
offset
-offset
in the
argument str
, if k is not less than
offset
but is less than offset+str.length()
-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.
offset
- the offset.str
- a string.
StringBuffer
object.java.lang.StringBuffer#length()
public StringBuffer insert(int offset, char[] str)
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 String.valueOf(char[])
and the
characters of that string were then
inserted
into this
StringBuffer
object at the position indicated by
offset
.
offset
- the offset.str
- a character array.
StringBuffer
object.public StringBuffer insert(int offset, boolean b)
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.
offset
- the offset.b
- a boolean
.
StringBuffer
object.java.lang.String#valueOf(boolean)
,
java.lang.StringBuffer#insert(int, java.lang.String)
,
java.lang.StringBuffer#length()
public StringBuffer insert(int offset, char c)
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 String.valueOf(char)
and the character
in that string were then 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.
offset
- the offset.c
- a char
.
StringBuffer
object.java.lang.StringBuffer#length()
public StringBuffer insert(int offset, int i)
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.
offset
- the offset.i
- an int
.
StringBuffer
object.java.lang.String#valueOf(int)
,
java.lang.StringBuffer#insert(int, java.lang.String)
,
java.lang.StringBuffer#length()
public StringBuffer insert(int offset, long l)
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.
offset
- the offset.l
- a long
.
StringBuffer
object.java.lang.String#valueOf(long)
,
java.lang.StringBuffer#insert(int, java.lang.String)
,
java.lang.StringBuffer#length()
public StringBuffer insert(int offset, float f)
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.
offset
- the offset.f
- a float
.
StringBuffer
object.java.lang.String#valueOf(float)
,
java.lang.StringBuffer#insert(int, java.lang.String)
,
java.lang.StringBuffer#length()
public StringBuffer insert(int offset, double d)
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.
offset
- the offset.d
- a double
.
StringBuffer
object.java.lang.String#valueOf(double)
,
java.lang.StringBuffer#insert(int, java.lang.String)
,
java.lang.StringBuffer#length()
public int indexOf(String str)
isthis.toString().startsWith(str, k)
true
.
str
- any string.
-1
is returned.public int indexOf(String str, int fromIndex)
If no such value of k exists, then -1 is returned.k>= Math.min(fromIndex, str.length()) && this.toString().startsWith(str, k)
str
- the substring for which to search.fromIndex
- the index from which to start the search.
public int lastIndexOf(String str)
this.length()
.
The returned index is the largest value k such that
is true.this.toString().startsWith(str, k)
str
- the substring to search for.
-1
is returned.public int lastIndexOf(String str, int fromIndex)
If no such value of k exists, then -1 is returned.k <= Math.min(fromIndex, str.length()) && this.toString().startsWith(str, k)
str
- the substring to search for.fromIndex
- the index to start the search from.
public StringBuffer reverse()
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.
StringBuffer
object.public String toString()
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.
toString
in interface CharSequence
toString
in class Object
final void setShared()
final char[] getValue()
private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException
public char get(int index)
public int size()
public String snapshot()
public void iterate(AssocFunc func)