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