The Java method java.lang.StringBuffer.append() is used to append the specified data to the end of the current StringBuffer object. It supports various types of parameters such as primitive data types, string, and objects. This method modifies the current StringBuffer and returns a reference to the same object, allowing for method chaining.
Java StringBuffer.append - 30 examples found. These are the top rated real world Java examples of java.lang.StringBuffer.append extracted from open source projects. You can rate examples to help us improve the quality of examples.