Package org.snpeff.fileIterator
Class NullReader
- java.lang.Object
-
- java.io.Reader
-
- org.snpeff.fileIterator.NullReader
-
- All Implemented Interfaces:
java.io.Closeable
,java.lang.AutoCloseable
,java.lang.Readable
public class NullReader extends java.io.Reader
A buffered reader for a file. It allows to 'seek' and 'readLine()'- Author:
- pablocingolani
-
-
Constructor Summary
Constructors Constructor Description NullReader()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
int
read(char[] arg0, int arg1, int arg2)
-
-
-
Method Detail
-
close
public void close() throws java.io.IOException
- Specified by:
close
in interfacejava.lang.AutoCloseable
- Specified by:
close
in interfacejava.io.Closeable
- Specified by:
close
in classjava.io.Reader
- Throws:
java.io.IOException
-
read
public int read(char[] arg0, int arg1, int arg2) throws java.io.IOException
- Specified by:
read
in classjava.io.Reader
- Throws:
java.io.IOException
-
-