Constructors
Name | Description |
---|---|
Inflater() | Creates a new decompressor. |
Inflater(boolean) | Creates a new decompressor. |
Methods
Name | Description |
---|---|
end() | Discards unprocessed input and frees internal data. |
finalize() | Frees the decompressor when garbage is collected. |
finished() | Return true if the end of the compressed data stream has been reached. |
getAdler() | Returns the ADLER-32 value of the uncompressed data. |
getRemaining() | Returns the total number of bytes remaining in the input buffer. |
getTotalIn() | Returns the total number of bytes input so far. |
getTotalOut() | Returns the total number of bytes output so far. |
inflate(byte[]) | Uncompresses bytes into specified buffer. |
inflate(byte[], int, int) | Uncompresses bytes into specified buffer. |
needsDictionary() | Returns true if a preset dictionary is needed for decompression. |
needsInput() | Returns true if no data remains in the input buffer. |
reset() | Resets inflater so that a new set of input data can be processed. |
setDictionary(byte[]) | Sets the preset dictionary to the given array of bytes. |
setDictionary(byte[], int, int) | Sets the preset dictionary to the given array of bytes. |
setInput(byte[]) | Sets input data for decompression. |
setInput(byte[], int, int) | Sets input data for decompression. |