public interface ZipOutputStreamParameters extends ZipCharsetParameters
ZipOutputStream
parameters.Modifier and Type | Method and Description |
---|---|
int |
getLevel()
Returns the compression level for entries.
|
int |
getMethod()
Returns the default compression method for entries.
|
int |
getOverheadSize()
Returns the number of entries which can be additionally accomodated by
the internal hash map without resizing it.
|
getCharset
int getLevel()
ZipEntry.DEFLATED
or ZipEntry.BZIP2
.
Legal values are Deflater.DEFAULT_COMPRESSION
or range from
Deflater#BEST_SPEED
to Deflater#BEST_COMPRESSION
.int getMethod()
ZipEntry
does not specify a
compression method.
Legal values are ZipEntry.STORED
, ZipEntry.DEFLATED
and ZipEntry.BZIP2
.ZipEntry.getMethod()
int getOverheadSize()
Copyright © 2005–2018 Schlichtherle IT Services. All rights reserved.