|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.io.Writer org.apache.commons.io.output.StringBuilderWriter
public class StringBuilderWriter
Writer
implementation that outputs to a StringBuilder
.
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 multiple Thread
s then
java.io.StringWriter
should be used.
Field Summary |
---|
Fields inherited from class java.io.Writer |
---|
lock |
Constructor Summary | |
---|---|
StringBuilderWriter()
Construct a new StringBuilder instance with default capacity. |
|
StringBuilderWriter(int capacity)
Construct a new StringBuilder instance with the specified capacity. |
|
StringBuilderWriter(StringBuilder builder)
Construct a new instance with the specified StringBuilder . |
Method Summary | |
---|---|
Writer |
append(char value)
Append a single character to this Writer. |
Writer |
append(CharSequence value)
Append a character sequence to this Writer. |
Writer |
append(CharSequence value,
int start,
int end)
Append a portion of a character sequence to the StringBuilder . |
void |
close()
Closing this writer has no effect. |
void |
flush()
Flushing this writer has no effect. |
StringBuilder |
getBuilder()
Return the underlying builder. |
String |
toString()
Returns StringBuilder.toString() . |
void |
write(char[] value,
int offset,
int length)
Write a portion of a character array to the StringBuilder . |
void |
write(String value)
Write a String to the StringBuilder . |
Methods inherited from class java.io.Writer |
---|
write, write, write |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public StringBuilderWriter()
StringBuilder
instance with default capacity.
public StringBuilderWriter(int capacity)
StringBuilder
instance with the specified capacity.
capacity
- The initial capacity of the underlying StringBuilder
public StringBuilderWriter(StringBuilder builder)
StringBuilder
.
builder
- The String builderMethod Detail |
---|
public Writer append(char value)
append
in interface Appendable
append
in class Writer
value
- The character to append
public Writer append(CharSequence value)
append
in interface Appendable
append
in class Writer
value
- The character to append
public Writer append(CharSequence value, int start, int end)
StringBuilder
.
append
in interface Appendable
append
in class Writer
value
- The character to appendstart
- The index of the first characterend
- The index of the last character + 1
public void close()
close
in interface Closeable
close
in class Writer
public void flush()
flush
in interface Flushable
flush
in class Writer
public void write(String value)
StringBuilder
.
write
in class Writer
value
- The value to writepublic void write(char[] value, int offset, int length)
StringBuilder
.
write
in class Writer
value
- The value to writeoffset
- The index of the first characterlength
- The number of characters to writepublic StringBuilder getBuilder()
public String toString()
StringBuilder.toString()
.
toString
in class Object
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |