Java in a Nutshell Online Quick Reference for Java 1.1
Availability: JDK 1.1
public abstract class Reader extends Object { // Protected Constructors protected Reader(); protected Reader(Object lock); // Protected Instance Variables protected Object lock; // Public Instance Methods public abstract void close() throws IOException; public void mark(int readAheadLimit) throws IOException; public boolean markSupported(); public int read() throws IOException; public int read(char[] cbuf) throws IOException; public abstract int read(char[] cbuf, int off, int len) throws IOException; public boolean ready() throws IOException; public void reset() throws IOException; public long skip(long n) throws IOException; }