| 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. | 
| Modifier and Type | Method and Description | 
|---|---|
| static Pack200Strategy | Pack200Strategy. valueOf(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. | 
| Constructor and Description | 
|---|
| Pack200CompressorInputStream(File f,
                            Pack200Strategy mode)Decompresses the given file using the given strategy to cache
 the results. | 
| Pack200CompressorInputStream(File f,
                            Pack200Strategy mode,
                            Map<String,String> props)Decompresses the given file using the given strategy to cache
 the results and the given properties. | 
| Pack200CompressorInputStream(InputStream in,
                            Pack200Strategy mode)Decompresses the given stream using the given strategy to cache
 the results. | 
| Pack200CompressorInputStream(InputStream in,
                            Pack200Strategy mode,
                            Map<String,String> props)Decompresses the given stream using the given strategy to cache
 the results and the given properties. | 
| Pack200CompressorOutputStream(OutputStream out,
                             Pack200Strategy mode)Compresses the given stream using the given strategy to cache
 the results. | 
| Pack200CompressorOutputStream(OutputStream out,
                             Pack200Strategy mode,
                             Map<String,String> props)Compresses the given stream using the given strategy to cache
 the results and the given properties. | 
Copyright © 2018 The Apache Software Foundation. All rights reserved.