Uses of Class java.lang.StringBuilder

Uses in package java.lang

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
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
Append the String value of the argument to this StringBuilder.
StringBuilder
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
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
Append the code point to this StringBuilder.
StringBuilder
StringBuilder.delete(int start, int end)
Delete characters from this StringBuilder.
StringBuilder
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
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, 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, long lnum)
Insert the String value of the argument into this StringBuilder.
StringBuilder
StringBuilder.replace(int start, int end, String str)
Replace characters between index start (inclusive) and end (exclusive) with str.
StringBuilder
Reverse the characters in this StringBuilder.