Class UnsupportedZipFeatureException.Feature
- java.lang.Object
-
- org.apache.commons.compress.archivers.zip.UnsupportedZipFeatureException.Feature
-
- All Implemented Interfaces:
java.io.Serializable
- Enclosing class:
- UnsupportedZipFeatureException
public static class UnsupportedZipFeatureException.Feature extends java.lang.Object implements java.io.Serializable
ZIP Features that may or may not be supported.- Since:
- 1.1
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static UnsupportedZipFeatureException.Feature
DATA_DESCRIPTOR
The entry uses a data descriptor.static UnsupportedZipFeatureException.Feature
ENCRYPTION
The entry is encrypted.static UnsupportedZipFeatureException.Feature
METHOD
The entry used an unsupported compression method.private java.lang.String
name
private static long
serialVersionUID
static UnsupportedZipFeatureException.Feature
SPLITTING
The archive uses splitting or spanning.static UnsupportedZipFeatureException.Feature
UNKNOWN_COMPRESSED_SIZE
The archive contains entries with unknown compressed size for a compression method that doesn't support detection of the end of the compressed stream.
-
Constructor Summary
Constructors Modifier Constructor Description private
Feature(java.lang.String name)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
ENCRYPTION
public static final UnsupportedZipFeatureException.Feature ENCRYPTION
The entry is encrypted.
-
METHOD
public static final UnsupportedZipFeatureException.Feature METHOD
The entry used an unsupported compression method.
-
DATA_DESCRIPTOR
public static final UnsupportedZipFeatureException.Feature DATA_DESCRIPTOR
The entry uses a data descriptor.
-
SPLITTING
public static final UnsupportedZipFeatureException.Feature SPLITTING
The archive uses splitting or spanning.- Since:
- 1.5
-
UNKNOWN_COMPRESSED_SIZE
public static final UnsupportedZipFeatureException.Feature UNKNOWN_COMPRESSED_SIZE
The archive contains entries with unknown compressed size for a compression method that doesn't support detection of the end of the compressed stream.- Since:
- 1.16
-
name
private final java.lang.String name
-
-