Uses of Class
org.apache.commons.compress.compressors.pack200.Pack200Strategy
-
Packages that use Pack200Strategy Package Description org.apache.commons.compress.compressors.pack200 Provides stream classes for compressing and decompressing streams using the Pack200 algorithm used to compress Java archives. -
-
Uses of Pack200Strategy in org.apache.commons.compress.compressors.pack200
Methods in org.apache.commons.compress.compressors.pack200 that return Pack200Strategy Modifier and Type Method Description static Pack200Strategy
Pack200Strategy. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Pack200Strategy[]
Pack200Strategy. values()
Returns an array containing the constants of this enum type, in the order they are declared.Constructors in org.apache.commons.compress.compressors.pack200 with parameters of type Pack200Strategy Constructor Description Pack200CompressorInputStream(java.io.File f, Pack200Strategy mode)
Decompresses the given file using the given strategy to cache the results.Pack200CompressorInputStream(java.io.File f, Pack200Strategy mode, java.util.Map<java.lang.String,java.lang.String> props)
Decompresses the given file using the given strategy to cache the results and the given properties.Pack200CompressorInputStream(java.io.InputStream in, java.io.File f, Pack200Strategy mode, java.util.Map<java.lang.String,java.lang.String> props)
Pack200CompressorInputStream(java.io.InputStream in, Pack200Strategy mode)
Decompresses the given stream using the given strategy to cache the results.Pack200CompressorInputStream(java.io.InputStream in, Pack200Strategy mode, java.util.Map<java.lang.String,java.lang.String> props)
Decompresses the given stream using the given strategy to cache the results and the given properties.Pack200CompressorOutputStream(java.io.OutputStream out, Pack200Strategy mode)
Compresses the given stream using the given strategy to cache the results.Pack200CompressorOutputStream(java.io.OutputStream out, Pack200Strategy mode, java.util.Map<java.lang.String,java.lang.String> props)
Compresses the given stream using the given strategy to cache the results and the given properties.
-