StringBuilder |
StringBuilder.append(boolean b) |
Appends the string representation of the specified boolean value.
|
StringBuilder |
StringBuilder.append(char c) |
Appends the string representation of the specified char value.
|
StringBuilder |
StringBuilder.append(char[] ch) |
Appends the string representation of the specified char[].
|
StringBuilder |
StringBuilder.append(char[] str,
int offset,
int len) |
Appends the string representation of the specified subset of the char[].
|
StringBuilder |
StringBuilder.append(double d) |
Appends the string representation of the specified double value.
|
StringBuilder |
StringBuilder.append(float f) |
Appends the string representation of the specified float value.
|
StringBuilder |
StringBuilder.append(int value) |
Appends the string representation of the specified int value.
|
StringBuilder |
StringBuilder.append(int value,
int minLength) |
Appends the string representation of the specified int value.
|
StringBuilder |
StringBuilder.append(int value,
int minLength,
char prefix) |
Appends the string representation of the specified int value.
|
StringBuilder |
StringBuilder.append(long value) |
Appends the string representation of the specified long value.
|
StringBuilder |
StringBuilder.append(long value,
int minLength) |
Appends the string representation of the specified long value.
|
StringBuilder |
StringBuilder.append(long value,
int minLength,
char prefix) |
Appends the string representation of the specified long value.
|
StringBuilder |
StringBuilder.append(StringBuilder builder) |
|
StringBuilder |
StringBuilder.append(StringBuilder builder,
int start,
int end) |
|
StringBuilder |
StringBuilder.append(java.lang.CharSequence csq) |
Appends the string representation of the specified CharSequence.
|
StringBuilder |
StringBuilder.append(java.lang.CharSequence csq,
int start,
int end) |
Appends the string representation of the specified subsequence of the CharSequence.
|
StringBuilder |
StringBuilder.append(java.lang.Object obj) |
Appends the string representation of the specified Object.
|
StringBuilder |
StringBuilder.append(java.lang.String str) |
Appends the contents of the specified string.
|
StringBuilder |
StringBuilder.append(java.lang.String str,
java.lang.String separator) |
Appends the specified separator if the builder is not empty, then the specified string.
|
StringBuilder |
StringBuilder.appendCodePoint(int codePoint) |
Appends the encoded Unicode code point.
|
StringBuilder |
StringBuilder.appendLine(java.lang.String str) |
Appends the contents of the specified string, then create a new line.
|
StringBuilder |
StringBuilder.delete(int start,
int end) |
Deletes a sequence of characters specified by start and end.
|
StringBuilder |
StringBuilder.deleteCharAt(int index) |
Deletes the character at the specified index.
|
StringBuilder |
StringBuilder.insert(int offset,
boolean b) |
Inserts the string representation of the specified boolean value at the specified offset.
|
StringBuilder |
StringBuilder.insert(int offset,
char c) |
Inserts the string representation of the specified char value at the specified offset.
|
StringBuilder |
StringBuilder.insert(int offset,
char[] ch) |
Inserts the string representation of the specified char[] at the specified offset.
|
StringBuilder |
StringBuilder.insert(int offset,
char[] str,
int strOffset,
int strLen) |
Inserts the string representation of the specified subsequence of the char[] at the specified offset.
|
StringBuilder |
StringBuilder.insert(int offset,
double d) |
Inserts the string representation of the specified double value at the specified offset.
|
StringBuilder |
StringBuilder.insert(int offset,
float f) |
Inserts the string representation of the specified float value at the specified offset.
|
StringBuilder |
StringBuilder.insert(int offset,
int i) |
Inserts the string representation of the specified int value at the specified offset.
|
StringBuilder |
StringBuilder.insert(int offset,
long l) |
Inserts the string representation of the specified long value at the specified offset.
|
StringBuilder |
StringBuilder.insert(int offset,
java.lang.CharSequence s) |
Inserts the string representation of the specified CharSequence at the specified offset.
|
StringBuilder |
StringBuilder.insert(int offset,
java.lang.CharSequence s,
int start,
int end) |
Inserts the string representation of the specified subsequence of the CharSequence at the specified offset.
|
StringBuilder |
StringBuilder.insert(int offset,
java.lang.Object obj) |
Inserts the string representation of the specified Object at the specified offset.
|
StringBuilder |
StringBuilder.insert(int offset,
java.lang.String str) |
Inserts the specified string at the specified offset.
|
StringBuilder |
StringBuilder.replace(char find,
java.lang.String replace) |
Replaces all instances of find with replace.
|
StringBuilder |
StringBuilder.replace(int start,
int end,
java.lang.String str) |
Replaces the specified subsequence in this builder with the specified string.
|
StringBuilder |
StringBuilder.replace(java.lang.String find,
java.lang.String replace) |
Replaces all instances of find with replace.
|
StringBuilder |
StringBuilder.reverse() |
Reverses the order of characters in this builder.
|
StringBuilder |
PerformanceCounter.toString(StringBuilder sb) |
Creates a string in the form of "name [time: value, load: value]"
|
StringBuilder |
PerformanceCounters.toString(StringBuilder sb) |
|