Uses of Class
com.ning.compress.lzf.LZFChunk
-
Packages that use LZFChunk Package Description com.ning.compress.lzf Package that contains public API of the LZF codec, as well as some of the implementation (specifically parts that are designed to be overridable). -
-
Uses of LZFChunk in com.ning.compress.lzf
Fields in com.ning.compress.lzf declared as LZFChunk Modifier and Type Field Description protected LZFChunk
LZFChunk. _next
Methods in com.ning.compress.lzf that return LZFChunk Modifier and Type Method Description static LZFChunk
LZFChunk. createCompressed(int origLen, byte[] encData, int encPtr, int encLen)
Factory method for constructing compressed chunkstatic LZFChunk
LZFChunk. createNonCompressed(byte[] plainData, int ptr, int len)
Factory method for constructing compressed chunkLZFChunk
ChunkEncoder. encodeChunk(byte[] data, int offset, int len)
Method for compressing (or not) individual chunksLZFChunk
ChunkEncoder. encodeChunkIfCompresses(byte[] data, int offset, int inputLen, double maxResultRatio)
Method for compressing individual chunk, if (and only if) it compresses down to specified ratio or less.LZFChunk
LZFChunk. next()
Methods in com.ning.compress.lzf with parameters of type LZFChunk Modifier and Type Method Description void
LZFChunk. setNext(LZFChunk next)
-