| AbstractInputStreamItemDecoder<T> |
A base class for item decoders whose pre-processing on the input streams consists only
on buffering and decompression, providing the transformed input stream for the decode method to work on.
|
| AbstractOutputStreamItemEncoder<T> |
A base class for item encoders whose pre-processing on the output streams consists only
on buffering and compression, providing the transformed output stream for the encode method to work on.
|
| AvroCodecFactory<T> |
A codec factory for AVRO format.
|
| AvroDecoder<T> |
An ItemDecoder that decodes objects encoded in avro format.
|
| AvroEncoder<T> |
An ItemEncoder that encode any java class to bytes using avro.
|
| CSVDecoder<T> |
|
| CSVEncoder<T> |
An ItemEncoder that encodes objects as compliant CSV rows.
|
| DelegatingByteArrayCodec<T> |
Wraps a given byte array encoder and byte array decoder, and delegates encoding/decoding
requests to them.
|
| DelegatingCodecFactory<T> |
Wraps a given encoder and decoder factories, and delegates encoding/decoding creation
requests to them.
|
| IntDecoders |
A collection of decoder factories for reading 16, 32 and 64 bit integers
|
| IntEncoders |
A collection of encoder factories for writing 16, 32 and 64 bit integers
|
| SimpleDecoderFactory<T> |
A simple generic decoder factory implementation.
|
| SimpleEncoderFactory<T> |
A simple generic encoder factory implementation.
|
| TxtCodecFactory<T> |
A textual encoder-decoder
|
| TxtDecoderFactory<T> |
An DecoderFactory that decodes items from a textual form, assuming that items are delimited by "\n".
|
| TxtEncoderFactory<T> |
An EncoderFactory that encodes items as text, delimiting them by "\n".
|