Java in a Nutshell Online Quick Reference for Java 1.1

CLASS java.io.StringReader

Availability: JDK 1.1

public class StringReader extends Reader {
   // Public Constructor
      public StringReader(String s);
   // 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[] cbuf, int off, int len) throws IOException;  // Defines Reader.read()
      public boolean ready();  // Overrides Reader.ready()
      public void reset() throws IOException;  // Overrides Reader.reset()
      public long skip(long ns) 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.