Class java.io.PushbackReader (1.1)
public class PushbackReader extends FilterReader {
// Public Constructors
public PushbackReader(Reader in, int size);
public PushbackReader(Reader in);
// Public Instance Methods
public void close( ) throws IOException; // Overrides FilterReader.close( )
public boolean markSupported( ); // Overrides FilterReader.markSupported( )
public int read( ) throws IOException; // Overrides FilterReader.read( )
public int read(char[ ] cbuf, int off, int len) throws IOException; // Overrides FilterReader.read( )
public boolean ready( ) throws IOException; // Overrides FilterReader.ready( )
public void unread(int c) throws IOException;
public void unread(char[ ] cbuf, int off, int len) throws IOException;
public void unread(char[ ] cbuf) throws IOException;
}