Class java.util.zip.Deflater (1.1)
public class Deflater extends Object {
// Public Constructors
public Deflater(int level, boolean nowrap);
public Deflater(int level);
public Deflater( );
// Constants
public final static int BEST_COMPRESSION;
public final static int BEST_SPEED;
public final static int DEFAULT_COMPRESSION;
public final static int DEFAULT_STRATEGY;
public final static int DEFLATED;
public final static int FILTERED;
public final static int HUFFMAN_ONLY;
public final static int NO_COMPRESSION;
// Public Instance Methods
public synchronized int deflate(byte[ ] buf, int off, int len);
public synchronized void end( );
public synchronized void finish( );
public synchronized boolean finished( );
public synchronized int getTotalIn( );
public synchronized int getTotalOut( );
public boolean needsInput( );
public synchronized void reset( );
public synchronized void setDictionary(byte[ ] buf, int off, int len);
public synchronized void setInput(byte[ ] buf, int off, int len);
public synchronized void setLevel(int Level) throws IllegalArgumentException;
public synchronized void setStrategy(int strategy) throws IllegalArgumentException;
// Protected Instance Methods
protected void finalize( ); // Overrides Object.finalize( )
}