Package java.lang
Class StringBuffer
StringBuffer append(boolean b)
StringBuffer append(byte[] str)
StringBuffer append(byte[] str, int offset, int len)
StringBuffer append(char c)
StringBuffer append(char[] str)
StringBuffer append(char[] str, int offset, int len)
StringBuffer append(float f)
StringBuffer append(int i)
StringBuffer append(Object obj)
StringBuffer append(String str)
_INSERT_METHOD_SIGNATURE_HERE_
Description:
append(boolean b) method:
Appends the string representation of the boolean argument to the sequence.
append(byte[] str) method:
Appends the string representation of the byte array argument to the sequence.
append(byte[] str, int offset, int len) method:
Appends the string representation of the specified subarray of the byte array argument to the sequence.
append(char c) method:
Appends the string representation of the char argument to the sequence.
append(char[] str) method:
Appends the string representation of the char array argument to the sequence.
append(char[] str, int offset, int len) method:
Appends the string representation of the specified subarray of the char array argument to the sequence.
append(float f) method:
Appends the string representation of the float argument to the sequence.
append(int i) method:
Appends the string representation of the int argument to the sequence.
append(Object obj) method:
Appends the string representation of the Object argument to the sequence.
append(String str) method:
Appends the string paramenter to the sequence.