Package com.thaiopensource.validate.auto
Class RewindableReader
- java.lang.Object
-
- java.io.Reader
-
- com.thaiopensource.validate.auto.RewindableReader
-
- All Implemented Interfaces:
Rewindable
,Closeable
,AutoCloseable
,Readable
public class RewindableReader extends Reader implements Rewindable
Rewindable implementation over a reader. Modified from RewindableInputStream by replacing the input stream with a reader.- Author:
- george
-
-
Constructor Summary
Constructors Constructor Description RewindableReader(Reader in)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
canRewind()
void
close()
int
read()
int
read(char[] b, int off, int len)
void
rewind()
void
willNotRewind()
-
Methods inherited from class java.io.Reader
mark, markSupported, nullReader, read, read, ready, reset, skip, transferTo
-
-
-
-
Constructor Detail
-
RewindableReader
public RewindableReader(Reader in)
-
-
Method Detail
-
close
public void close() throws IOException
- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Specified by:
close
in classReader
- Throws:
IOException
-
rewind
public void rewind()
- Specified by:
rewind
in interfaceRewindable
-
canRewind
public boolean canRewind()
- Specified by:
canRewind
in interfaceRewindable
-
willNotRewind
public void willNotRewind()
- Specified by:
willNotRewind
in interfaceRewindable
-
read
public int read() throws IOException
- Overrides:
read
in classReader
- Throws:
IOException
-
read
public int read(char[] b, int off, int len) throws IOException
- Specified by:
read
in classReader
- Throws:
IOException
-
-