Class java.util.zip.GZIPInputStream (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 final static int GZIP_MAGIC;
  // Protected Instance Variables
    protected CRC32 crc;
    protected boolean eos;
  // Public Instance Methods
    public synchronized void close( ) throws IOException;  // Overrides FilterInputStream.close( )
    public synchronized int read( ) throws IOException;  // Overrides InflaterInputStream.read( )
    public synchronized int read(byte[ ] buf, int off, int len) throws IOException;  // Overrides InflaterInputStream.read( )
}