Package org.biojava.utils.io
Class CountedBufferedReader
- java.lang.Object
-
- java.io.Reader
-
- java.io.BufferedReader
-
- org.biojava.utils.io.CountedBufferedReader
-
- All Implemented Interfaces:
Closeable,AutoCloseable,Readable
public class CountedBufferedReader extends BufferedReader
- Author:
- Thomas Down
-
-
Constructor Summary
Constructors Constructor Description CountedBufferedReader(Reader stream)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()longgetFilePointer()voidmark(int limit)booleanmarkSupported()intread()intread(char[] cbuf)intread(char[] cbuf, int off, int len)StringreadLine()booleanready()voidreset()longskip(long n)-
Methods inherited from class java.io.BufferedReader
lines
-
Methods inherited from class java.io.Reader
nullReader, read, transferTo
-
-
-
-
Constructor Detail
-
CountedBufferedReader
public CountedBufferedReader(Reader stream)
-
-
Method Detail
-
getFilePointer
public long getFilePointer()
-
close
public void close() throws IOException
- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Overrides:
closein classBufferedReader- Throws:
IOException
-
read
public int read() throws IOException
- Overrides:
readin classBufferedReader- Throws:
IOException
-
read
public int read(char[] cbuf) throws IOException
- Overrides:
readin classReader- Throws:
IOException
-
read
public int read(char[] cbuf, int off, int len) throws IOException
- Overrides:
readin classBufferedReader- Throws:
IOException
-
ready
public boolean ready() throws IOException
- Overrides:
readyin classBufferedReader- Throws:
IOException
-
skip
public long skip(long n) throws IOException
- Overrides:
skipin classBufferedReader- Throws:
IOException
-
markSupported
public boolean markSupported()
- Overrides:
markSupportedin classBufferedReader
-
mark
public void mark(int limit) throws IOException
- Overrides:
markin classBufferedReader- Throws:
IOException
-
reset
public void reset() throws IOException
- Overrides:
resetin classBufferedReader- Throws:
IOException
-
readLine
public String readLine() throws IOException
- Overrides:
readLinein classBufferedReader- Throws:
IOException
-
-