Class jls.util.zip.Inflater

This class provides support for the ZLIB inflater.
Defined in: Inflater.js.

Class Summary
Constructor Attributes Constructor Name and Description
 
Creates an inflater.
Method Summary
Method Attributes Method Name and Description
 
end()
Ends the inflater.
 
Tells if the inflater has finished to consume the input data.
 
inflate(buffer)
Inflates the input into the specified buffer.
 
Tells if the inflater needs a dictionary.
 
Tells if the inflater needs more input data.
 
setInput(buffer)
Sets the input.
Class Detail
jls.util.zip.Inflater(name)
Creates an inflater.
Parameters:
{String} name
The entry name.
Method Detail
end()
Ends the inflater.

{Boolean} finished()
Tells if the inflater has finished to consume the input data.
Returns:
{Boolean} true if the inflater has finished to consume the input data.

{Number} inflate(buffer)
Inflates the input into the specified buffer.
Parameters:
{jls.lang.ByteBuffer} buffer
The buffer to fill.
Returns:
{Number} The inflated byte count.

{Boolean} needsDictionary()
Tells if the inflater needs a dictionary.
Returns:
{Boolean} true if the inflater needs a dictionary.

{Boolean} needsInput()
Tells if the inflater needs more input data.
Returns:
{Boolean} true if the inflater needs more input data.

setInput(buffer)
Sets the input.
Parameters:
{jls.lang.ByteBuffer} buffer
The buffer to inflate.

Documentation generated by JsDoc Toolkit 2.3.2 on Mon Jan 17 2011 23:56:21 GMT+0100 (CET)