java.net
public interface: Decompressor [javadoc |
source]
All Known Implementing Classes:
InflatingDecompressor
This interface models the common methods that every decompressor must provide
in order to be used as a "plugin" into the decompression layer.
The interface scheme is based on the
Inflater
class, the standard decompression engine available in every JVM.
If you want to provide a new decompression engine, you have to implement this
interface and pass the class name as the property
decompressor:
java -Ddecompressor=java.net.InflatingDecompressor ....
Method from java.net.Decompressor Summary: |
---|
end, finished, getAdler, getRemaining, getTotalIn, getTotalOut, inflate, inflate, needsDictionary, needsInput, reset, setDictionary, setDictionary, setInput, setInput |