All Methods Instance Methods Concrete Methods
Modifier and Type |
Method |
Description |
StringBuilder |
append(boolean value) |
Appends the string representation of a specified boolean value to this instance.
|
StringBuilder |
append(byte value) |
Appends the string representation of a specified byte to this instance.
|
StringBuilder |
append(char value) |
Appends the string representation of a specified Unicode character to this instance.
|
StringBuilder |
append(char[] value) |
Appends the string representation of the Unicode characters in a specified array to this instance.
|
StringBuilder |
append(char[] value,
int startIndex,
int charCount) |
Appends the string representation of a specified subarray of Unicode characters to this instance.
|
StringBuilder |
append(char value,
int repeatCount) |
Appends a specified number of copies of the string representation of a Unicode character to this instance.
|
StringBuilder |
append(double value) |
Appends the string representation of a specified double number to this instance.
|
StringBuilder |
append(float value) |
Appends the string representation of a specified float number to this instance.
|
StringBuilder |
append(int value) |
Appends the string representation of a specified int number to this instance.
|
StringBuilder |
append(long value) |
Appends the string representation of a specified long number to this instance.
|
StringBuilder |
append(short value) |
Appends the string representation of a specified short number to this instance.
|
StringBuilder |
append(Object value) |
Appends the string representation of a specified object to this instance.
|
StringBuilder |
append(String value) |
Appends a copy of the specified string to this instance.
|
StringBuilder |
append(String value,
int startIndex,
int count) |
Appends a copy of a specified substring to this instance.
|
StringBuilder |
append(BigDecimal value) |
Appends the string representation of a specified BigDecimal number to this instance.
|
StringBuilder |
appendFormat(String format,
Object... args) |
Appends the string returned by processing a composite format string, which contains zero or more format items, to
this instance.
|
StringBuilder |
appendLine() |
Appends the default line terminator to the end of the current StringBuilder object.
|
StringBuilder |
appendLine(String value) |
Appends a copy of the specified string followed by the default line terminator to the end of the current
StringBuilder object.
|
void |
copyTo(int sourceIndex,
char[] destination,
int destinationIndex,
int count) |
Copies the characters from a specified segment of this instance to a specified segment of a destination Char
array.
|
int |
ensureCapacity(int capacity) |
Ensures that the capacity of this instance of StringBuilder is at least the specified value.
|
boolean |
equals(Object obj) |
Returns a value indicating whether this instance is equal to a specified object.
|
int |
getCapacity() |
Gets the maximum number of characters that can be contained in the memory allocated by the current instance.
|
int |
getLength() |
Gets the length of the current StringBuilder object.
|
int |
getMaxCapacity() |
Gets the maximum capacity of this instance.
|
int |
hashCode() |
Returns a hash code for this StringBuilder.
|
StringBuilder |
insert(int index,
boolean value) |
Inserts the string representation of a boolean value into this instance at the specified character position.
|
StringBuilder |
insert(int index,
byte value) |
Inserts the string representation of a byte value into this instance at the specified character position.
|
StringBuilder |
insert(int index,
char value) |
Inserts the string representation of a specified Unicode character into this instance at the specified character
position.
|
StringBuilder |
insert(int index,
char[] value) |
Inserts the string representation of a specified array of Unicode characters into this instance at the specified
character position.
|
StringBuilder |
insert(int index,
char[] value,
int startIndex,
int charCount) |
Inserts the string representation of a specified subarray of Unicode characters into this instance at the
specified character position.
|
StringBuilder |
insert(int index,
double value) |
Inserts the string representation of a double number into this instance at the specified character position.
|
StringBuilder |
insert(int index,
float value) |
Inserts the string representation of a float number into this instance at the specified character position.
|
StringBuilder |
insert(int index,
int value) |
Inserts the string representation of an int number into this instance at the specified character position.
|
StringBuilder |
insert(int index,
long value) |
Inserts the string representation of a long number into this instance at the specified character position.
|
StringBuilder |
insert(int index,
short value) |
Inserts the string representation of a short number into this instance at the specified character position.
|
StringBuilder |
insert(int index,
Object value) |
Inserts the string representation of an object into this instance at the specified character position.
|
StringBuilder |
insert(int index,
String value) |
Inserts a string into this instance at the specified character position.
|
StringBuilder |
insert(int index,
String value,
int count) |
Inserts one or more copies of a specified string into this instance at the specified character position.
|
StringBuilder |
insert(int index,
BigDecimal value) |
Inserts the string representation of a decimal number into this instance at the specified character position.
|
StringBuilder |
remove(int startIndex,
int length) |
Removes the specified range of characters from this instance.
|
StringBuilder |
replace(char oldChar,
char newChar) |
Replaces all occurrences of a specified character in this instance with another specified character.
|
StringBuilder |
replace(char oldValue,
char newValue,
int startIndex,
int count) |
Replaces, within a substring of this instance, all occurrences of a specified character with another specified
character.
|
StringBuilder |
replace(String oldValue,
String newValue) |
Replaces all occurrences of a specified string in this instance with another specified string.
|
StringBuilder |
replace(String oldValue,
String newValue,
int startIndex,
int count) |
Replaces, within a substring of this instance, all occurrences of a specified string with another specified
string.
|
void |
setCapacity(int value) |
Sets the maximum number of characters that can be contained in the memory allocated by the current instance.
|
void |
setLength(int value) |
Sets the length of the current StringBuilder object.
|
String |
toString() |
Converts the value of this instance to a String.
|
String |
toString(int startIndex,
int length) |
Converts the value of a substring of this instance to a String.
|