Uses of Class
net.lingala.zip4j.model.enums.CompressionLevel
-
Packages that use CompressionLevel Package Description net.lingala.zip4j.io.outputstream net.lingala.zip4j.model net.lingala.zip4j.model.enums -
-
Uses of CompressionLevel in net.lingala.zip4j.io.outputstream
Constructors in net.lingala.zip4j.io.outputstream with parameters of type CompressionLevel Constructor Description DeflaterOutputStream(CipherOutputStream<?> cipherOutputStream, CompressionLevel compressionLevel, int bufferSize)
-
Uses of CompressionLevel in net.lingala.zip4j.model
Fields in net.lingala.zip4j.model declared as CompressionLevel Modifier and Type Field Description private CompressionLevel
ZipParameters. compressionLevel
Methods in net.lingala.zip4j.model that return CompressionLevel Modifier and Type Method Description CompressionLevel
ZipParameters. getCompressionLevel()
Get the compression level used to compress filesMethods in net.lingala.zip4j.model with parameters of type CompressionLevel Modifier and Type Method Description void
ZipParameters. setCompressionLevel(CompressionLevel compressionLevel)
Set the compression level used to compress files -
Uses of CompressionLevel in net.lingala.zip4j.model.enums
Methods in net.lingala.zip4j.model.enums that return CompressionLevel Modifier and Type Method Description static CompressionLevel
CompressionLevel. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CompressionLevel[]
CompressionLevel. values()
Returns an array containing the constants of this enum type, in the order they are declared.
-