|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface ICompressor
The interface every compressor must implement.
Method Summary | |
---|---|
byte[] |
deflate(byte[] data)
Compress an array of bytes. |
byte[] |
inflate(byte[] data)
Uncompress an array of bytes. |
Method Detail |
---|
byte[] inflate(byte[] data) throws CompressorException
data
- The array to be inflated.
CompressorException
- if this method cannot inflate the data.byte[] deflate(byte[] data) throws CompressorException
data
- The array to be deflated.
CompressorException
- if this method cannot deflate the data.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |