Package | Description |
---|---|
com.intuit.ipp.compression |
Modifier and Type | Method and Description |
---|---|
byte[] |
ICompressor.compress(String data,
byte[] uploadFile)
Method to compress the given data using the corresponding implementation algorithm.
|
byte[] |
GZIPCompressor.compress(String data,
byte[] uploadFile)
Method to compress the given data using the corresponding implementation algorithm.
|
byte[] |
DeflateCompressor.compress(String data,
byte[] uploadFile)
Method to compress the given data using the corresponding implementation algorithm.
|
OutputStream |
ICompressor.decompress(InputStream in)
Method to decompress the given data using the corresponding implementation algorithm.
|
OutputStream |
GZIPCompressor.decompress(InputStream in)
Method to decompress the given data using the corresponding implementation algorithm.
|
OutputStream |
DeflateCompressor.decompress(InputStream in)
Method to decompress the given data using the corresponding implementation algorithm.
|
static ICompressor |
CompressorFactory.getCompressor(String compressFormat)
Method to get the corresponding compressor class for the given compress format
|
static boolean |
CompressorFactory.isValidCompressFormat(String compressFormat)
Method to validate whether the given compression format is valid
|
Copyright © 2017. All rights reserved.