Java in a Nutshell Online Quick Reference for Java 1.1

CLASS java.io.CharArrayReader

Availability: JDK 1.1

public class CharArrayReader extends Reader {
   // Public Constructors
      public CharArrayReader(char[] buf);
      public CharArrayReader(char[] buf, int offset, int length);
   // Protected Instance Variables
      protected char[] buf;
      protected int count;
      protected int markedPos;
      protected int pos;
   // Public Instance Methods
      public void close();  // 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[] b, int off, int len) throws IOException;  // Defines Reader.read()
      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()
}

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