|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
public interface ICompressionService
This Interface is implemented by objects that provide compression services.
| Method Summary | |
|---|---|
byte[] |
compress(byte[] inputData)
Compress input data. |
byte[] |
compress(java.io.InputStream inputData)
Compress input data. |
byte[] |
decompress(byte[] inputData)
Decompress input data. |
byte[] |
decompress(java.io.InputStream inputData)
Decompress input data. |
| Method Detail |
|---|
byte[] compress(byte[] inputData)
throws java.lang.Exception
inputData - The data to compress as a byte[].
java.lang.Exception - if there is a problem compressing the data.
byte[] compress(java.io.InputStream inputData)
throws java.lang.Exception
inputData - The data to compress as an InputStream.
java.lang.Exception - if there is a problem compressing the data.
byte[] decompress(byte[] inputData)
throws java.lang.Exception
inputData - The data to decompress as a byte[].
java.lang.Exception - if there is a problem decompressing the data.
byte[] decompress(java.io.InputStream inputData)
throws java.lang.Exception
inputData - The data to decompress as an InputStream.
java.lang.Exception - if there is a problem decompressing the data.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||