static Supplier<ZlibDecompressor> |
ZlibDecompressor.newFactory() |
Creates a zlib decompressor factory with the default wrapper ( ZlibWrapper.ZLIB ).
|
static Supplier<ZlibDecompressor> |
ZlibDecompressor.newFactory(boolean decompressConcatenated) |
|
static Supplier<ZlibDecompressor> |
ZlibDecompressor.newFactory(boolean decompressConcatenated,
int maxAllocation) |
|
static Supplier<ZlibDecompressor> |
ZlibDecompressor.newFactory(byte[] dictionary) |
Creates a zlib decompressor factory with the specified preset dictionary.
|
static Supplier<ZlibDecompressor> |
ZlibDecompressor.newFactory(byte[] dictionary,
int maxAllocation) |
Creates zlib decompressor factory with the specified preset dictionary and maximum buffer allocation.
|
static Supplier<ZlibDecompressor> |
ZlibDecompressor.newFactory(int maxAllocation) |
Creates a zlib decompressor factory with the default wrapper ( ZlibWrapper.ZLIB )
and the specified maximum buffer allocation.
|
static Supplier<ZlibDecompressor> |
ZlibDecompressor.newFactory(ZlibWrapper wrapper) |
Creates zlib decompressor factory with the specified wrapper.
|
static Supplier<ZlibDecompressor> |
ZlibDecompressor.newFactory(ZlibWrapper wrapper,
boolean decompressConcatenated) |
|
static Supplier<ZlibDecompressor> |
ZlibDecompressor.newFactory(ZlibWrapper wrapper,
boolean decompressConcatenated,
int maxAllocation) |
|
static Supplier<ZlibDecompressor> |
ZlibDecompressor.newFactory(ZlibWrapper wrapper,
int maxAllocation) |
Creates zlib decompressor factory with the specified wrapper and maximum buffer allocation.
|