Package org.apache.groovy.io
Class StringBuilderWriter
- java.lang.Object
-
- java.io.Writer
-
- org.apache.groovy.io.StringBuilderWriter
-
- All Implemented Interfaces:
Closeable
,Flushable
,Serializable
,Appendable
,AutoCloseable
public class StringBuilderWriter extends Writer implements Serializable
Copied from https://github.com/apache/commons-io/blob/master/src/main/java/org/apache/commons/io/output/StringBuilderWriter.javaWriter
implementation that outputs to aStringBuilder
.NOTE: This implementation, as an alternative to
java.io.StringWriter
, provides an un-synchronized (i.e. for use in a single thread) implementation for better performance. For safe usage with multipleThread
s thenjava.io.StringWriter
should be used.- Since:
- 2.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description StringBuilderWriter()
Constructs a newStringBuilder
instance with default capacity.StringBuilderWriter(int capacity)
Constructs a newStringBuilder
instance with the specified capacity.StringBuilderWriter(StringBuilder builder)
Constructs a new instance with the specifiedStringBuilder
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Writer
append(char value)
Appends a single character to this Writer.Writer
append(CharSequence value)
Appends a character sequence to this Writer.Writer
append(CharSequence value, int start, int end)
Appends a portion of a character sequence to theStringBuilder
.void
close()
Closing this writer has no effect.void
flush()
Flushing this writer has no effect.StringBuilder
getBuilder()
Returns the underlying builder.String
toString()
ReturnsStringBuilder.toString()
.void
write(char[] value, int offset, int length)
Writes a portion of a character array to theStringBuilder
.void
write(String value)
Writes a String to theStringBuilder
.-
Methods inherited from class java.io.Writer
nullWriter, write, write, write
-
-
-
-
Constructor Detail
-
StringBuilderWriter
public StringBuilderWriter()
Constructs a newStringBuilder
instance with default capacity.
-
StringBuilderWriter
public StringBuilderWriter(int capacity)
Constructs a newStringBuilder
instance with the specified capacity.- Parameters:
capacity
- The initial capacity of the underlyingStringBuilder
-
StringBuilderWriter
public StringBuilderWriter(StringBuilder builder)
Constructs a new instance with the specifiedStringBuilder
.If
builder
is null a new instance with default capacity will be created.- Parameters:
builder
- The String builder. May be null.
-
-
Method Detail
-
append
public Writer append(char value)
Appends a single character to this Writer.- Specified by:
append
in interfaceAppendable
- Overrides:
append
in classWriter
- Parameters:
value
- The character to append- Returns:
- This writer instance
-
append
public Writer append(CharSequence value)
Appends a character sequence to this Writer.- Specified by:
append
in interfaceAppendable
- Overrides:
append
in classWriter
- Parameters:
value
- The character to append- Returns:
- This writer instance
-
append
public Writer append(CharSequence value, int start, int end)
Appends a portion of a character sequence to theStringBuilder
.- Specified by:
append
in interfaceAppendable
- Overrides:
append
in classWriter
- Parameters:
value
- The character to appendstart
- The index of the first characterend
- The index of the last character + 1- Returns:
- This writer instance
-
close
public void close()
Closing this writer has no effect.
-
flush
public void flush()
Flushing this writer has no effect.
-
write
public void write(String value)
Writes a String to theStringBuilder
.
-
write
public void write(char[] value, int offset, int length)
Writes a portion of a character array to theStringBuilder
.
-
getBuilder
public StringBuilder getBuilder()
Returns the underlying builder.- Returns:
- The underlying builder
-
toString
public String toString()
ReturnsStringBuilder.toString()
.
-
-