| | |
| public | StringBuilder | append(boolean b) |
|
| public | StringBuilder | append(char c) |
|
| public | StringBuilder | append(char[] str) |
|
| public | StringBuilder | append(char[] str, int offset, int len) |
|
| public | StringBuilder | append(double d) |
|
| public | StringBuilder | append(float f) |
|
| public | StringBuilder | append(int i) |
|
| public | StringBuilder | append(CharSequence s) Throws: IndexOutOfBoundsException |
|
| public | StringBuilder | append(CharSequence s, int start, int end) Throws: IndexOutOfBoundsException |
|
| public | StringBuilder | append(Object obj) |
|
| public | StringBuilder | append(String str) |
|
| public | StringBuilder | append(StringBuffer sb) |
|
| public | StringBuilder | append(long lng) |
|
| public | StringBuilder | appendCodePoint(int codePoint) |
|
| public | StringBuilder | delete(int start, int end) Throws: StringIndexOutOfBoundsException |
|
| public | StringBuilder | deleteCharAt(int index) Throws: StringIndexOutOfBoundsException |
|
| public | int | indexOf(String str) Throws: NullPointerException |
|
| public | int | indexOf(String str, int fromIndex) Throws: NullPointerException |
|
| public | StringBuilder | insert(int offset, boolean b) Throws: StringIndexOutOfBoundsException |
|
| public | StringBuilder | insert(int offset, char c) Throws: IndexOutOfBoundsException |
|
| public | StringBuilder | insert(int offset, char[] str) Throws: StringIndexOutOfBoundsException |
|
| public | StringBuilder | insert(int index, char[] str, int offset, int len) Throws: StringIndexOutOfBoundsException |
|
| public | StringBuilder | insert(int offset, double d) Throws: StringIndexOutOfBoundsException |
|
| public | StringBuilder | insert(int offset, float f) Throws: StringIndexOutOfBoundsException |
|
| public | StringBuilder | insert(int offset, int i) Throws: StringIndexOutOfBoundsException |
|
| public | StringBuilder | insert(int dstOffset, CharSequence s) Throws: IndexOutOfBoundsException |
|
| public | StringBuilder | insert(int dstOffset, CharSequence s, int start, int end) Throws: IndexOutOfBoundsException |
|
| public | StringBuilder | insert(int offset, Object obj) Throws: StringIndexOutOfBoundsException |
|
| public | StringBuilder | insert(int offset, String str) Throws: StringIndexOutOfBoundsException |
|
| public | StringBuilder | insert(int offset, long l) Throws: StringIndexOutOfBoundsException |
|
| public | int | lastIndexOf(String str) Throws: NullPointerException |
|
| public | int | lastIndexOf(String str, int fromIndex) Throws: NullPointerException |
|
| public | StringBuilder | replace(int start, int end, String str) Throws: StringIndexOutOfBoundsException |
|
| public | StringBuilder | reverse() |
|
| public | String | toString() Overrides: Object |
|