| Interface | Description |
|---|---|
| IntegratedByteIntegerCODEC |
Interface describing a CODEC to compress integers to bytes.
|
| IntegratedIntegerCODEC |
This is just like IntegerCODEC, except that it indicates that delta coding is
"integrated", so that you don't need a separate step for delta coding.
|
| SkippableIntegratedIntegerCODEC |
Interface describing a standard CODEC to compress integers.
|
| Class | Description |
|---|---|
| Delta |
Generic class to compute differential coding.
|
| IntegratedBinaryPacking |
Scheme based on a commonly used idea: can be extremely fast.
|
| IntegratedBitPacking |
"Integrated" bit packing routines: they include both the bit packing and the
differential coding.
|
| IntegratedComposition |
Helper class to compose schemes.
|
| IntegratedIntCompressor |
This is a convenience class that wraps a codec to provide
a "friendly" API.
|
| IntegratedVariableByte |
Implementation of variable-byte with differential coding.
|
| SkippableIntegratedComposition |
Helper class to compose schemes.
|
| XorBinaryPacking |
BinaryPacking over XOR differential.
|
Copyright © 2015. All Rights Reserved.