Deflater.java | 22 * This class compresses data using the <i>DEFLATE</i> algorithm (see <a 114 // A stub buffer used when deflate() called while inputBuffer has not been 188 * @see #deflate(byte[], int, int) 190 public int deflate(byte[] buf) { method in class:Deflater 191 return deflate(buf, 0, buf.length); 206 public synchronized int deflate(byte[] buf, int off, int nbytes) { method in class:Deflater 223 * and additional calls to {@link #deflate} to be made. 227 public synchronized int deflate(byte[] buf, int off, int nbytes, int flush) { method in class:Deflater
|