Package org.primefaces.util
Class FastStringWriter
- java.lang.Object
-
- java.io.Writer
-
- org.primefaces.util.FastStringWriter
-
- All Implemented Interfaces:
Closeable,Flushable,Appendable,AutoCloseable
public class FastStringWriter extends Writer
-
-
Field Summary
Fields Modifier and Type Field Description protected StringBuilderbuilder
-
Constructor Summary
Constructors Constructor Description FastStringWriter()FastStringWriter(int initialCapacity)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()voidflush()StringBuildergetBuffer()voidreset()StringtoString()voidwrite(char[] cbuf, int off, int len)voidwrite(String str)voidwrite(String str, int off, int len)
-
-
-
Field Detail
-
builder
protected StringBuilder builder
-
-
Method Detail
-
write
public void write(char[] cbuf, int off, int len) throws IOException- Specified by:
writein classWriter- Throws:
IOException
-
flush
public void flush() throws IOException- Specified by:
flushin interfaceFlushable- Specified by:
flushin classWriter- Throws:
IOException
-
close
public void close() throws IOException- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Specified by:
closein classWriter- Throws:
IOException
-
getBuffer
public StringBuilder getBuffer()
-
reset
public void reset()
-
-