Java in a Nutshell Online Quick Reference for Java 1.1

CLASS java.io.Reader

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;
}
Extended By:
BufferedReader, CharArrayReader, FilterReader, InputStreamReader, PipedReader, StringReader.
Passed To:
BufferedReader.BufferedReader(), FilterReader.FilterReader(), LineNumberReader.LineNumberReader(), PushbackReader.PushbackReader(), StreamTokenizer.StreamTokenizer().
Type Of:
FilterReader.in.

Java in a Nutshell Online Quick Reference for Java 1.1
Created by David Flanagan. Copyright © 1997 by O'Reilly & Associates.