Use 
PREV   NEXT      All Classes   All Packages
FlexDoc/Javadoc 2.0
Demo Java Doc

Uses of Class
java.lang.StringBuilder
Packages that use StringBuilder
Provides classes that are fundamental to the design of the Java programming language.
Class declarations in java.lang with type arguments of type StringBuilder
class
A mutable sequence of characters.
Methods in java.lang that return StringBuilder
StringBuilder.append(boolean b)
Appends the string representation of the boolean argument to the sequence.
StringBuilder.append(char c)
Appends the string representation of the char argument to this sequence.
StringBuilder.append(char[] str)
Appends the string representation of the char array argument to this sequence.
StringBuilder.append(char[] str, int offset, int len)
Appends the string representation of a subarray of the char array argument to this sequence.
StringBuilder.append(CharSequence s)
Appends the specified character sequence to this Appendable.
StringBuilder.append(CharSequence s, int start, int end)
Appends a subsequence of the specified CharSequence to this sequence.
StringBuilder.append(double d)
Appends the string representation of the double argument to this sequence.
StringBuilder.append(float f)
Appends the string representation of the float argument to this sequence.
StringBuilder.append(int i)
Appends the string representation of the int argument to this sequence.
StringBuilder.append(long lng)
Appends the string representation of the long argument to this sequence.
StringBuilder.append(Object obj)
Appends the string representation of the Object argument.
StringBuilder.append(String str)
Appends the specified string to this character sequence.
StringBuilder.append(StringBuffer sb)
Appends the specified StringBuffer to this sequence.
StringBuilder.appendCodePoint(int codePoint)
Appends the string representation of the codePoint argument to this sequence.
StringBuilder.delete(int start, int end)
Removes the characters in a substring of this sequence.
StringBuilder.deleteCharAt(int index)
Removes the char at the specified position in this sequence.
StringBuilder.insert(int dstOffset, CharSequence s)
Inserts the specified CharSequence into this sequence.
StringBuilder.insert(int dstOffset, CharSequence s, int start, int end)
Inserts a subsequence of the specified CharSequence into this sequence.
StringBuilder.insert(int index, char[] str, int offset, int len)
Inserts the string representation of a subarray of the str array argument into this sequence.
StringBuilder.insert(int offset, boolean b)
Inserts the string representation of the boolean argument into this sequence.
StringBuilder.insert(int offset, char c)
Inserts the string representation of the char argument into this sequence.
StringBuilder.insert(int offset, char[] str)
Inserts the string representation of the char array argument into this sequence.
StringBuilder.insert(int offset, double d)
Inserts the string representation of the double argument into this sequence.
StringBuilder.insert(int offset, float f)
Inserts the string representation of the float argument into this sequence.
StringBuilder.insert(int offset, int i)
Inserts the string representation of the second int argument into this sequence.
StringBuilder.insert(int offset, long l)
Inserts the string representation of the long argument into this sequence.
StringBuilder.insert(int offset, Object obj)
Inserts the string representation of the Object argument into this character sequence.
StringBuilder.insert(int offset, String str)
Inserts the string into this character sequence.
StringBuilder.replace(int start, int end, String str)
Replaces the characters in a substring of this sequence with characters in the specified String.
StringBuilder.reverse()
Causes this character sequence to be replaced by the reverse of the sequence.
Methods in java.lang with parameters of type StringBuilder
int
StringBuilder.compareTo(StringBuilder another)
Compares two StringBuilder instances lexicographically.
Constructors in java.lang with parameters of type StringBuilder
Allocates a new string that contains the sequence of characters currently contained in the string builder argument.

 Use 
PREV   NEXT      All Classes   All Packages
FlexDoc/Javadoc 2.0
Demo Java Doc

Java API documentation generated with FlexDoc/Javadoc 2.0 using JavadocClassic 3.0 template set.
FlexDoc/Javadoc is a template-driven programming tool for rapid development of any Javadoc-based Java API documentation generators (i.e. doclets). If you need to customize your Javadoc without writing a full-blown doclet from scratch, FlexDoc/Javadoc may be the only tool able to help you! Find out more at www.flexdoc.xyz