Java in a Nutshell Online Quick Reference for Java 1.1
Availability: JDK 1.1
public class GZIPInputStream extends InflaterInputStream { // Public Constructors public GZIPInputStream(InputStream in, int size) throws IOException; public GZIPInputStream(InputStream in) throws IOException; // Constants public static final int GZIP_MAGIC; // Protected Instance Variables protected CRC32 crc; protected boolean eos; // Public Instance Methods public void close() throws IOException; // Overrides FilterInputStream.close() public int read(byte[] buf, int off, int len) throws IOException; // Overrides InflaterInputStream.read() }