TextBuilder |
TextBuilder.append(boolean b) |
Appends the textual representation of the specified boolean
argument.
|
TextBuilder |
TextBuilder.append(char c) |
Appends the specified character.
|
TextBuilder |
TextBuilder.append(char[] chars) |
Appends the characters from the char array argument.
|
TextBuilder |
TextBuilder.append(char[] chars,
int offset,
int length) |
Appends the characters from a subarray of the char array argument.
|
TextBuilder |
TextBuilder.append(int i) |
Appends the decimal representation of the specified int
argument.
|
TextBuilder |
TextBuilder.append(int i,
int radix) |
Appends the radix representation of the specified int
argument.
|
TextBuilder |
TextBuilder.append(long l) |
Appends the decimal representation of the specified long
argument.
|
TextBuilder |
TextBuilder.append(long l,
int radix) |
Appends the radix representation of the specified long
argument.
|
TextBuilder |
TextBuilder.append(java.lang.CharSequence csq) |
Appends the specified character sequence.
|
TextBuilder |
TextBuilder.append(java.lang.CharSequence csq,
int start,
int end) |
Appends a subsequence of the specified character sequence.
|
TextBuilder |
TextBuilder.append(java.lang.String str) |
Appends the specified string to this text builder.
|
TextBuilder |
TextBuilder.append(java.lang.String str,
int start,
int end) |
Appends a subsequence of the specified string.
|
TextBuilder |
TextBuilder.clear() |
Removes all the characters of this text builder
(equivalent to this.delete(start, this.length())).
|
TextBuilder |
TextBuilder.delete(int start,
int end) |
Removes the characters between the specified indices.
|
TextBuilder |
TextBuilder.insert(int index,
java.lang.CharSequence csq) |
Inserts the specified character sequence at the specified location.
|
TextBuilder |
TextBuilder.reverse() |
Reverses this character sequence.
|