static Supplier<ZlibCompressor> |
ZlibCompressor.newFactory() |
Creates a zlib compressor factory with the default compression level ( 6 )
and the default wrapper ( ZlibWrapper.ZLIB ).
|
static Supplier<ZlibCompressor> |
ZlibCompressor.newFactory(byte[] dictionary) |
Creates a zlib compressor factory with the default compression level (6 )
and the specified preset dictionary.
|
static Supplier<ZlibCompressor> |
ZlibCompressor.newFactory(int compressionLevel) |
Creates a zlib compressor factory with the specified compressionLevel
and the default wrapper ( ZlibWrapper.ZLIB ).
|
static Supplier<ZlibCompressor> |
ZlibCompressor.newFactory(int compressionLevel,
byte[] dictionary) |
Creates a zlib compressor factory with the specified compressionLevel
and the specified preset dictionary.
|
static Supplier<ZlibCompressor> |
ZlibCompressor.newFactory(ZlibWrapper wrapper) |
Creates a zlib compressor factory with the default compression level (6 )
and the specified wrapper.
|
static Supplier<ZlibCompressor> |
ZlibCompressor.newFactory(ZlibWrapper wrapper,
int compressionLevel) |
Creates a zlib compressor factory with the specified compressionLevel
and the specified wrapper.
|