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.SerializableZIP 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.FeatureDATA_DESCRIPTORThe entry uses a data descriptor.static UnsupportedZipFeatureException.FeatureENCRYPTIONThe entry is encrypted.static UnsupportedZipFeatureException.FeatureMETHODThe entry used an unsupported compression method.static UnsupportedZipFeatureException.FeatureSPLITTINGThe archive uses splitting or spanning.static UnsupportedZipFeatureException.FeatureUNKNOWN_COMPRESSED_SIZEThe archive contains entries with unknown compressed size for a compression method that doesn't support detection of the end of the compressed stream.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()
-
-
-
Field Detail
-
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
-
-