|
|||||||||
| Home >> All >> java >> [ lang overview ] | PREV NEXT | ||||||||
Uses of Class
java.lang.StringBuilder
| Uses of StringBuilder in java.lang |
| Methods in java.lang that return StringBuilder | |
StringBuilder |
StringBuilder.append(Object obj)
Append the String value of the argument to this
StringBuilder. |
StringBuilder |
StringBuilder.append(String str)
Append the String to this StringBuilder. |
StringBuilder |
StringBuilder.append(StringBuffer stringBuffer)
Append the StringBuilder value of the argument 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(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(CharSequence seq)
Append the characters in the CharSequence to this
buffer. |
StringBuilder |
StringBuilder.append(CharSequence seq,
int start,
int end)
Append some characters from the CharSequence to this
buffer. |
StringBuilder |
StringBuilder.appendCodePoint(int code)
Append the code point to this StringBuilder. |
StringBuilder |
StringBuilder.append(int inum)
Append the String value of the argument to this
StringBuilder. |
StringBuilder |
StringBuilder.append(long lnum)
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(double dnum)
Append the String value of the argument 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.replace(int start,
int end,
String str)
Replace characters between index start (inclusive) and
end (exclusive) with str. |
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,
Object obj)
Insert the String value of the argument into this
StringBuilder. |
StringBuilder |
StringBuilder.insert(int offset,
String str)
Insert the String argument into this
StringBuilder. |
StringBuilder |
StringBuilder.insert(int offset,
CharSequence sequence)
Insert the CharSequence argument into this
StringBuilder. |
StringBuilder |
StringBuilder.insert(int offset,
CharSequence sequence,
int start,
int end)
Insert a subsequence of the CharSequence argument into this
StringBuilder. |
StringBuilder |
StringBuilder.insert(int offset,
char[] data)
Insert the char[] argument into 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,
int inum)
Insert the String value of the argument into this
StringBuilder. |
StringBuilder |
StringBuilder.insert(int offset,
long lnum)
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,
double dnum)
Insert the String value of the argument into this
StringBuilder. |
StringBuilder |
StringBuilder.reverse()
Reverse the characters in this StringBuilder. |
| Constructors in java.lang with parameters of type StringBuilder | |
String(StringBuilder buffer)
Creates a new String using the character sequence represented by the StringBuilder. |
|
|
|||||||||
| Home >> All >> java >> [ lang overview ] | PREV NEXT | ||||||||