Package org.apache.solr.common.util
Class FastWriter
- java.lang.Object
- 
- java.io.Writer
- 
- org.apache.solr.common.util.FastWriter
 
 
- 
- All Implemented Interfaces:
- Closeable,- Flushable,- Appendable,- AutoCloseable
 
 public class FastWriter extends Writer Single threaded BufferedWriter Internal Solr use only, subject to change.
- 
- 
Constructor SummaryConstructors Constructor Description FastWriter(Writer w)FastWriter(Writer sink, char[] tempBuffer, int start)
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description FastWriterappend(char c)voidclose()voidflush()voidflush(char[] buf, int offset, int len)voidflush(String str, int offset, int len)voidflushBuffer()static FastWriterwrap(Writer sink)voidwrite(char c)voidwrite(char[] arr, int off, int len)voidwrite(int c)voidwrite(String str, int off, int len)
 
- 
- 
- 
Field Detail- 
sinkprotected final Writer sink 
 - 
bufprotected char[] buf 
 - 
posprotected int pos 
 
- 
 - 
Method Detail- 
wrappublic static FastWriter wrap(Writer sink) 
 - 
writepublic void write(int c) throws IOException- Overrides:
- writein class- Writer
- Throws:
- IOException
 
 - 
writepublic void write(char c) throws IOException- Throws:
- IOException
 
 - 
appendpublic FastWriter append(char c) throws IOException - Specified by:
- appendin interface- Appendable
- Overrides:
- appendin class- Writer
- Throws:
- IOException
 
 - 
writepublic void write(char[] arr, int off, int len) throws IOException- Specified by:
- writein class- Writer
- Throws:
- IOException
 
 - 
writepublic void write(String str, int off, int len) throws IOException - Overrides:
- writein class- Writer
- Throws:
- IOException
 
 - 
flushpublic void flush() throws IOException- Specified by:
- flushin interface- Flushable
- Specified by:
- flushin class- Writer
- Throws:
- IOException
 
 - 
flushpublic void flush(char[] buf, int offset, int len) throws IOException- Throws:
- IOException
 
 - 
flushpublic void flush(String str, int offset, int len) throws IOException - Throws:
- IOException
 
 - 
closepublic void close() throws IOException- Specified by:
- closein interface- AutoCloseable
- Specified by:
- closein interface- Closeable
- Specified by:
- closein class- Writer
- Throws:
- IOException
 
 - 
flushBufferpublic void flushBuffer() throws IOException- Throws:
- IOException
 
 
- 
 
-