Java in a Nutshell Online Quick Reference for Java 1.1
Availability: JDK 1.1
public class InflaterInputStream extends FilterInputStream { // Public Constructors public InflaterInputStream(InputStream in, Inflater inf, int size); public InflaterInputStream(InputStream in, Inflater inf); public InflaterInputStream(InputStream in); // Protected Instance Variables protected byte[] buf; protected Inflater inf; protected int len; // Public Instance Methods public int read() throws IOException; // Overrides FilterInputStream.read() public int read(byte[] b, int off, int len) throws IOException; // Overrides FilterInputStream.read() public long skip(long n) throws IOException; // Overrides FilterInputStream.skip() // Protected Instance Methods protected void fill() throws IOException; }