Method |
Description |
append( )
|
Appends the string representation of the given object to the specified string buffer object. |
capacity( )
|
Returns the amount of storage available in the specified string buffer object. |
charAt( )
|
Returns the character at the specified index in the given string buffer object. |
ensureCapacity( )
|
Increases the capacity, as needed, to the specified amount in the given string buffer object. |
getChars( )
|
Returns a new character array object containing the specified string buffer. |
insert( )
|
Returns the given string buffer containing the specified object inserted at the specified offset. |
length( )
|
Returns the number of characters in the specified string buffer object. |
reverse( )
|
Returns a string buffer object with the characters in reverse order from the specified string buffer object. |
setCharAt( )
|
Sets the character at the specified offset to a given character in the given string buffer object. |
setLength( )
|
Sets the length of the specified string buffer object. |
StringBuffer( )
|
Returns a new string buffer object set to the specified value, capacity, or defaults. |
toString( )
|
Returns a string representation of the specified string buffer object. |