public class PushbackReader extends FilterReader
in
Constructor and Description |
---|
PushbackReader(Reader in) |
PushbackReader(Reader in,
int size) |
Modifier and Type | Method and Description |
---|---|
void |
close() |
void |
mark(int ignored) |
boolean |
markSupported() |
int |
read() |
int |
read(char[] buf,
int off,
int len)
real implementations should be synchronized ...
|
boolean |
ready() |
void |
reset() |
void |
unread(char[] buf) |
void |
unread(char[] buf,
int off,
int len) |
void |
unread(int ch) |
skip
public PushbackReader(Reader in)
public PushbackReader(Reader in, int size)
public void close() throws IOException
close
in class FilterReader
IOException
public void mark(int ignored) throws IOException
mark
in class FilterReader
IOException
public boolean markSupported()
markSupported
in class FilterReader
public int read() throws IOException
read
in class FilterReader
IOException
public void unread(int ch) throws IOException
IOException
public int read(char[] buf, int off, int len) throws IOException
Reader
read
in class FilterReader
IOException
public boolean ready() throws IOException
ready
in class FilterReader
IOException
public void reset() throws IOException
reset
in class FilterReader
IOException
public void unread(char[] buf) throws IOException
IOException
public void unread(char[] buf, int off, int len) throws IOException
IOException