Java in a Nutshell Online Quick Reference for Java 1.1
Availability: JDK 1.1
public class BufferedReader extends Reader { // Public Constructors public BufferedReader(Reader in, int sz); public BufferedReader(Reader in); // Public Instance Methods public void close() throws IOException; // Defines Reader.close() public void mark(int readAheadLimit) throws IOException; // Overrides Reader.mark() public boolean markSupported(); // Overrides Reader.markSupported() public int read() throws IOException; // Overrides Reader.read() public int read(char[] cbuf, int off, int len) throws IOException; // Defines Reader.read() public String readLine() throws IOException; public boolean ready() throws IOException; // Overrides Reader.ready() public void reset() throws IOException; // Overrides Reader.reset() public long skip(long n) throws IOException; // Overrides Reader.skip() }