Java in a Nutshell Online Quick Reference for Java 1.1

CLASS java.io.PushbackInputStream

Availability: JDK 1.0

public class PushbackInputStream extends FilterInputStream {
   // Public Constructors
1.1  public PushbackInputStream(InputStream in, int size);
      public PushbackInputStream(InputStream in);
   // Protected Instance Variables
1.1  protected byte[] buf;
1.1  protected int pos;
   // Public Instance Methods
      public int available() throws IOException;  // Overrides FilterInputStream.available()
      public boolean markSupported();  // Overrides FilterInputStream.markSupported()
      public int read() throws IOException;  // Overrides FilterInputStream.read()
      public int read(byte[] b, int off, int len) throws IOException;  // Overrides FilterInputStream.read()
      public void unread(int b) throws IOException;
1.1  public void unread(byte[] b, int off, int len) throws IOException;
1.1  public void unread(byte[] b) throws IOException;
}

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