Example usage for Java java.lang StringBuilder fields, constructors, methods, implement or subclass
The text is from its open source code.
StringBuilder(int capacity) Constructs a string builder with no characters in it and an initial capacity specified by the capacity argument. | |
StringBuilder(String str) Constructs a string builder initialized to the contents of the specified string. | |
StringBuilder(CharSequence seq) Constructs a string builder that contains the same characters as the specified CharSequence . | |
StringBuilder() Constructs a string builder with no characters in it and an initial capacity of 16 characters. |