Class java.lang.StringBuffer (1.0)
public final class StringBuffer extends Object implements Serializable {
// Public Constructors
public StringBuffer( );
public StringBuffer(int length);
public StringBuffer(String str);
// Public Instance Methods
public synchronized StringBuffer append(Object obj);
public synchronized StringBuffer append(String str);
public synchronized StringBuffer append(char[ ] str);
public synchronized StringBuffer append(char[ ] str, int offset, int len);
public StringBuffer append(boolean b);
public synchronized StringBuffer append(char c);
public StringBuffer append(int i);
public StringBuffer append(long l);
public StringBuffer append(float f);
public StringBuffer append(double d);
public int capacity( );
public synchronized char charAt(int index) throws StringIndexOutOfBoundsException;
public synchronized void ensureCapacity(int minimumCapacity);
public synchronized void getChars(int srcBegin, int srcEnd, char[ ] dst, int dstBegin) throws StringIndexOutOfBoundsException;
public synchronized StringBuffer insert(int offset, Object obj) throws StringIndexOutOfBoundsException;
public synchronized StringBuffer insert(int offset, String str) throws StringIndexOutOfBoundsException;
public synchronized StringBuffer insert(int offset, char[ ] str) throws StringIndexOutOfBoundsException;
public StringBuffer insert(int offset, boolean b) throws StringIndexOutOfBoundsException;
public synchronized StringBuffer insert(int offset, char c) throws StringIndexOutOfBoundsException;
public StringBuffer insert(int offset, int i) throws StringIndexOutOfBoundsException;
public StringBuffer insert(int offset, long l) throws StringIndexOutOfBoundsException;
public StringBuffer insert(int offset, float f) throws StringIndexOutOfBoundsException;
public StringBuffer insert(int offset, double d) throws StringIndexOutOfBoundsException;
public int length( );
public synchronized StringBuffer reverse( );
public synchronized void setCharAt(int index, char ch) throws StringIndexOutOfBoundsException;
public synchronized void setLength(int newLength) throws StringIndexOutOfBoundsException;
public String toString( ); // Overrides Object.toString( )
}