public interface Compressor
Modifier and Type | Field and Description |
---|---|
static int |
DEFLATE
The DEFLATE compression algorithm is used.
|
static int |
LZF
The LZF compression algorithm is used
|
static int |
NO
No compression is used.
|
Modifier and Type | Method and Description |
---|---|
int |
compress(byte[] in,
int inLen,
byte[] out,
int outPos)
Compress a number of bytes.
|
void |
expand(byte[] in,
int inPos,
int inLen,
byte[] out,
int outPos,
int outLen)
Expand a number of compressed bytes.
|
int |
getAlgorithm()
Get the compression algorithm type.
|
void |
setOptions(String options)
Set the compression options.
|
static final int NO
static final int LZF
static final int DEFLATE
int getAlgorithm()
int compress(byte[] in, int inLen, byte[] out, int outPos)
in
- the input datainLen
- the number of bytes to compressout
- the output areaoutPos
- the offset at the output arrayvoid expand(byte[] in, int inPos, int inLen, byte[] out, int outPos, int outLen)
in
- the compressed datainPos
- the offset at the input arrayinLen
- the number of bytes to readout
- the output areaoutPos
- the offset at the output arrayoutLen
- the size of the uncompressed datavoid setOptions(String options)
options
- the optionsCopyright © 2012 JBoss by Red Hat. All Rights Reserved.