org.apache.lucene.benchmark.byTask.utils
Class StringBufferReader
java.lang.Object
java.io.Reader
org.apache.lucene.benchmark.byTask.utils.StringBufferReader
- All Implemented Interfaces:
- Closeable, Readable
public class StringBufferReader
- extends Reader
Implements a Reader over a StringBuffer instance. Although
one can use StringReader by passing it
StringBuffer.toString(), it is better to use this class, as it
doesn't mark the passed-in StringBuffer as shared (which will cause
inner char[] allocations at the next append() attempt).
Notes:
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
StringBufferReader
public StringBufferReader(StringBuffer sb)
close
public void close()
- Specified by:
close in interface Closeable- Specified by:
close in class Reader
mark
public void mark(int readAheadLimit)
throws IOException
- Mark the present position in the stream. Subsequent calls to reset() will
reposition the stream to this point.
- Overrides:
mark in class Reader
- Parameters:
readAheadLimit - Limit on the number of characters that may be read
while still preserving the mark. Because the stream's input comes
from a StringBuffer, there is no actual limit, so this argument
must not be negative, but is otherwise ignored.
- Throws:
IllegalArgumentException - If readAheadLimit is < 0
IOException - If an I/O error occurs
markSupported
public boolean markSupported()
- Overrides:
markSupported in class Reader
read
public int read()
throws IOException
- Overrides:
read in class Reader
- Throws:
IOException
read
public int read(char[] cbuf,
int off,
int len)
throws IOException
- Specified by:
read in class Reader
- Throws:
IOException
ready
public boolean ready()
throws IOException
- Overrides:
ready in class Reader
- Throws:
IOException
reset
public void reset()
throws IOException
- Overrides:
reset in class Reader
- Throws:
IOException
set
public void set(StringBuffer sb)
skip
public long skip(long ns)
throws IOException
- Overrides:
skip in class Reader
- Throws:
IOException
Copyright © 2000-2010 Apache Software Foundation. All Rights Reserved.