public class CountedBufferedReader extends BufferedReader
| Constructor and Description |
|---|
CountedBufferedReader(Reader stream) |
| Modifier and Type | Method and Description |
|---|---|
void |
close() |
long |
getFilePointer() |
void |
mark(int limit) |
boolean |
markSupported() |
int |
read() |
int |
read(char[] cbuf) |
int |
read(char[] cbuf,
int off,
int len) |
String |
readLine() |
boolean |
ready() |
void |
reset() |
long |
skip(long n) |
linespublic CountedBufferedReader(Reader stream)
public long getFilePointer()
public void close() throws IOException
close in interface Closeableclose in interface AutoCloseableclose in class BufferedReaderIOExceptionpublic int read() throws IOException
read in class BufferedReaderIOExceptionpublic int read(char[] cbuf) throws IOException
read in class ReaderIOExceptionpublic int read(char[] cbuf, int off, int len) throws IOException
read in class BufferedReaderIOExceptionpublic boolean ready() throws IOException
ready in class BufferedReaderIOExceptionpublic long skip(long n) throws IOException
skip in class BufferedReaderIOExceptionpublic boolean markSupported()
markSupported in class BufferedReaderpublic void mark(int limit) throws IOException
mark in class BufferedReaderIOExceptionpublic void reset() throws IOException
reset in class BufferedReaderIOExceptionpublic String readLine() throws IOException
readLine in class BufferedReaderIOExceptionCopyright © 2020 BioJava. All rights reserved.