Class PrefixedReader
- java.lang.Object
-
- java.io.Reader
-
- org.apache.manifoldcf.connectorcommon.fuzzyml.PrefixedReader
-
- All Implemented Interfaces:
java.io.Closeable,java.lang.AutoCloseable,java.lang.Readable
public class PrefixedReader extends java.io.ReaderThis class represents a Reader that begins with characters passed to it through the constructor, and then continues with the characters from a wrapped Reader. It's basically used when we've read past where we want to be in a Reader and need to back up.
-
-
Field Summary
Fields Modifier and Type Field Description protected intcharMaxprotected intcharPositionprotected CharacterBuffercharsprotected java.io.ReaderremainderStream
-
Constructor Summary
Constructors Constructor Description PrefixedReader(CharacterBuffer chars, java.io.Reader remainderStream)Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()intread()intread(char[] cbuf)intread(char[] cbuf, int off, int len)intread(java.nio.CharBuffer target)longskip(long n)
-
-
-
Field Detail
-
chars
protected final CharacterBuffer chars
-
remainderStream
protected final java.io.Reader remainderStream
-
charPosition
protected int charPosition
-
charMax
protected int charMax
-
-
Constructor Detail
-
PrefixedReader
public PrefixedReader(CharacterBuffer chars, java.io.Reader remainderStream)
Constructor
-
-
Method Detail
-
read
public int read(java.nio.CharBuffer target) throws java.io.IOException- Specified by:
readin interfacejava.lang.Readable- Overrides:
readin classjava.io.Reader- Throws:
java.io.IOException
-
read
public int read() throws java.io.IOException- Overrides:
readin classjava.io.Reader- Throws:
java.io.IOException
-
read
public int read(char[] cbuf) throws java.io.IOException- Overrides:
readin classjava.io.Reader- Throws:
java.io.IOException
-
read
public int read(char[] cbuf, int off, int len) throws java.io.IOException- Specified by:
readin classjava.io.Reader- Throws:
java.io.IOException
-
skip
public long skip(long n) throws java.io.IOException- Overrides:
skipin classjava.io.Reader- Throws:
java.io.IOException
-
close
public void close() throws java.io.IOException- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfacejava.io.Closeable- Specified by:
closein classjava.io.Reader- Throws:
java.io.IOException
-
-