Java org.apache.commons.io.output StringBuilderWriter fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.io.output StringBuilderWriter fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.io.output StringBuilderWriter.

The text is from its open source code.

Constructor

StringBuilderWriter(int capacity)
Construct a new StringBuilder instance with the specified capacity.
StringBuilderWriter(StringBuilder builder)
Construct a new instance with the specified StringBuilder .
StringBuilderWriter()
Construct a new StringBuilder instance with default capacity.

Method

Writerappend(char value)
Append a single character to this Writer.
Writerappend(CharSequence value)
Append a character sequence to this Writer.
voidclose()
Closing this writer has no effect.
StringBuildergetBuilder()
Return the underlying builder.
StringtoString()
Returns StringBuilder#toString() .
voidwrite(String value)
Write a String to the StringBuilder .