GNU Classpath (0.95) | |
Frames | No Frames |
Constructors with parameter type java.lang.StringBuilder | |
Creates a new String using the character sequence represented by
the StringBuilder. |
Methods with return type java.lang.StringBuilder | |
StringBuilder | StringBuilder.append(boolean bool) Append the String value of the argument to this
StringBuilder . |
StringBuilder | StringBuilder.append(char ch) Append the char to this StringBuilder .
|
StringBuilder | StringBuilder.append(char[] data) Append the char array to this StringBuilder .
|
StringBuilder | StringBuilder.append(char[] data, int offset, int count) Append part of the char array to this
StringBuilder . |
StringBuilder | StringBuilder.append(double dnum) Append the String value of the argument to this
StringBuilder . |
StringBuilder | StringBuilder.append(float fnum) Append the String value of the argument to this
StringBuilder . |
StringBuilder | StringBuilder.append(int inum) Append the String value of the argument to this
StringBuilder . |
StringBuilder | Append the characters in the CharSequence to this
buffer.
|
StringBuilder | Append some characters from the CharSequence to this
buffer. |
StringBuilder | Append the String value of the argument to this
StringBuilder . |
StringBuilder | Append the String to this StringBuilder . |
StringBuilder | Append the StringBuilder value of the argument to this
StringBuilder . |
StringBuilder | StringBuilder.append(long lnum) Append the String value of the argument to this
StringBuilder . |
StringBuilder | StringBuilder.appendCodePoint(int code) Append the code point to this StringBuilder .
|
StringBuilder | StringBuilder.delete(int start, int end) Delete characters from this StringBuilder .
|
StringBuilder | StringBuilder.deleteCharAt(int index) Delete a character from this StringBuilder .
|
StringBuilder | StringBuilder.insert(int offset, boolean bool) Insert the String value of the argument into this
StringBuilder . |
StringBuilder | StringBuilder.insert(int offset, char ch) Insert the char argument into this StringBuilder .
|
StringBuilder | StringBuilder.insert(int offset, char[] data) Insert the char[] argument into this
StringBuilder .
|
StringBuilder | StringBuilder.insert(int offset, char[] str, int str_offset, int len) Insert a subarray of the char[] argument into this
StringBuilder .
|
StringBuilder | StringBuilder.insert(int offset, double dnum) Insert the String value of the argument into this
StringBuilder . |
StringBuilder | StringBuilder.insert(int offset, float fnum) Insert the String value of the argument into this
StringBuilder . |
StringBuilder | StringBuilder.insert(int offset, int inum) Insert the String value of the argument into this
StringBuilder . |
StringBuilder | Insert the CharSequence argument into this
StringBuilder . |
StringBuilder | Insert a subsequence of the CharSequence argument into this
StringBuilder . |
StringBuilder | Insert the String value of the argument into this
StringBuilder . |
StringBuilder | Insert the String argument into this
StringBuilder . |
StringBuilder | StringBuilder.insert(int offset, long lnum) Insert the String value of the argument into this
StringBuilder . |
StringBuilder | Replace characters between index start (inclusive) and
end (exclusive) with str . |
StringBuilder | Reverse the characters in this StringBuilder. |
GNU Classpath (0.95) |