Package org.h2.compress
Interface Compressor
-
- All Known Implementing Classes:
CompressDeflate,CompressLZF,CompressNo
public interface CompressorEach data compression algorithm must implement this interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intcompress(byte[] in, int inPos, int inLen, byte[] out, int outPos)Compress a number of bytes.voidexpand(byte[] in, int inPos, int inLen, byte[] out, int outPos, int outLen)Expand a number of compressed bytes.intgetAlgorithm()Get the compression algorithm type.voidsetOptions(java.lang.String options)Set the compression options.
-
-
-
Field Detail
-
NO
static final int NO
No compression is used.- See Also:
- Constant Field Values
-
LZF
static final int LZF
The LZF compression algorithm is used- See Also:
- Constant Field Values
-
DEFLATE
static final int DEFLATE
The DEFLATE compression algorithm is used.- See Also:
- Constant Field Values
-
-
Method Detail
-
getAlgorithm
int getAlgorithm()
Get the compression algorithm type.- Returns:
- the type
-
compress
int compress(byte[] in, int inPos, int inLen, byte[] out, int outPos)Compress a number of bytes.- Parameters:
in- the input datainPos- the offset at the input arrayinLen- the number of bytes to compressout- the output areaoutPos- the offset at the output array- Returns:
- the end position
-
expand
void expand(byte[] in, int inPos, int inLen, byte[] out, int outPos, int outLen)Expand a number of compressed bytes.- Parameters:
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 data
-
setOptions
void setOptions(java.lang.String options)
Set the compression options. This may include settings for higher performance but less compression.- Parameters:
options- the options
-
-