Java in a Nutshell Online Quick Reference for Java 1.1

CLASS java.util.zip.Inflater

Availability: JDK 1.1

public class Inflater extends Object {
   // Public Constructors
      public Inflater(boolean nowrap);
      public Inflater();
   // Public Instance Methods
      public synchronized native void end();
      public synchronized boolean finished();
      public synchronized native int getAdler();
      public synchronized int getRemaining();
      public synchronized native int getTotalIn();
      public synchronized native int getTotalOut();
      public synchronized native int inflate(byte[] b, int off, int len) throws DataFormatException;
      public int inflate(byte[] b) throws DataFormatException;
      public synchronized boolean needsDictionary();
      public synchronized boolean needsInput();
      public synchronized native void reset();
      public synchronized native void setDictionary(byte[] b, int off, int len);
      public void setDictionary(byte[] b);
      public synchronized void setInput(byte[] b, int off, int len);
      public void setInput(byte[] b);
   // Protected Instance Methods
      protected void finalize();  // Overrides Object.finalize()
}

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