
Method | 
Description |

StringBuffer append(boolean) | 
Appends the string representation of the boolean argument to the string buffer. |

StringBuffer append(char) | 
Appends the string representation of the char argument to this string buffer. |

StringBuffer append(char[]) | 
Appends the string representation of the char array argument to this string buffer. |

StringBuffer append(char[], int, int) | 
Appends the string representation of a subarray of the char array argument to this string buffer. |

StringBuffer append(double) | 
Appends the string representation of the double argument to this string buffer. |

StringBuffer append(float) | 
Appends the string representation of the float argument to this string buffer. |

StringBuffer append(int) | 
Appends the string representation of the int argument to this string buffer. |

StringBuffer append(long) | 
Appends the string representation of the long argument to this string buffer. |

StringBuffer append(Object) | 
Appends the string representation of the Object argument to this string buffer. |

StringBuffer append(String) | 
Appends the string to this string buffer. |

int capacity() | 
Returns the current capacity of the String buffer. |

char charAt(int) | 
The specified character of the sequence currently represented by the string buffer, as indicated by the index argument, is returned. |

StringBuffer delete(int, int) | 
Removes the characters in a substring of this StringBuffer. |

StringBuffer deleteCharAt(int) | 
Removes the character at the specified position in this StringBuffer (shortening the StringBuffer by one character). |

void ensureCapacity(int) | 
Ensures that the capacity of the buffer is at least equal to the specified minimum. |

void getChars(int, int, char[], int) | 
Characters are copied from this string buffer into the destination character array dst. |

StringBuffer insert(int, boolean) | 
Inserts the string representation of the boolean argument into this string buffer. |

StringBuffer insert(int, char) | 
Inserts the string representation of the char argument into this string buffer. |

StringBuffer insert(int, char[]) | 
Inserts the string representation of the char array argument into this string buffer. |

StringBuffer insert(int, char[], int, int) | 
Inserts the string representation of a subarray of the str array argument into this string buffer. |

StringBuffer insert(int, double) | 
Inserts the string representation of the double argument into this string buffer. |

StringBuffer insert(int, float) | 
Inserts the string representation of the float argument into this string buffer. |

StringBuffer insert(int, int) | 
Inserts the string representation of the second int argument into this string buffer. |

StringBuffer insert(int, long) | 
Inserts the string representation of the long argument into this string buffer. |

StringBuffer insert(int, Object) | 
Inserts the string representation of the Object argument into this string buffer. |

StringBuffer insert(int, String) | 
Inserts the string into this string buffer. |

int length() | 
Returns the length (character count) of this string buffer. |

StringBuffer replace(int, int, String) | 
Replaces the characters in a substring of this StringBuffer with characters in the specified String. |

StringBuffer reverse() | 
The character sequence contained in this string buffer is replaced by the reverse of the sequence. |

void setCharAt(int, char) | 
The character at the specified index of this string buffer is set to ch. |

void setLength(int) | 
Sets the length of this String buffer. |

String substring(int) | 
Returns a new String that contains a subsequence of characters currently contained in this StringBuffer.The substring begins at the specified index and extends to the end of the StringBuffer. |

String substring(int, int) | 
Returns a new String that contains a subsequence of characters currently contained in this StringBuffer. |

String toString() | 
Converts to a string representing the data in this string buffer. |