static Supplier<LzmaCompressor> |
LzmaCompressor.newFactory() |
Creates LZMA compressor factory with default settings.
|
static Supplier<LzmaCompressor> |
LzmaCompressor.newFactory(int dictionarySize) |
Creates LZMA compressor factory with specified dictionary size and default values of
lc = 3,
lp = 0,
pb = 2.
|
static Supplier<LzmaCompressor> |
LzmaCompressor.newFactory(int lc,
int lp,
int pb) |
Creates LZMA compressor factory with specified lc , lp , pb
values and the medium dictionary size of 65536.
|
static Supplier<LzmaCompressor> |
LzmaCompressor.newFactory(int lc,
int lp,
int pb,
int dictionarySize) |
Creates LZMA compressor factory with specified lc , lp , pb values and custom
dictionary size.
|
static Supplier<LzmaCompressor> |
LzmaCompressor.newFactory(int lc,
int lp,
int pb,
int dictionarySize,
boolean endMarkerMode,
int numFastBytes) |
Creates LZMA compressor factory with specified settings.
|