Package com.ning.compress.lzf.impl
Package that contains implementation classes that are not part
of public interface of LZF codec.
-
Class Summary Class Description UnsafeChunkDecoder Highly optimizedChunkDecoder
implementation that uses Sun JDK's Unsafe class (which may be included by other JDK's as well; IBM's apparently does).UnsafeChunkEncoder ChunkEncoder
implementation that handles actual encoding of individual chunks, using Sun'ssun.misc.Unsafe
functionality, which gives nice extra boost for speed.UnsafeChunkEncoderBE Implementation to use on Big-Endian architectures.UnsafeChunkEncoderLE Implementation to use on Little Endian architectures.UnsafeChunkEncoders Class that handles actual encoding of individual chunks.VanillaChunkDecoder SafeChunkDecoder
implementation that can be used on any platform.VanillaChunkEncoder