Class Zip.Zip64ModeAttribute
- java.lang.Object
- 
- org.apache.tools.ant.types.EnumeratedAttribute
- 
- org.apache.tools.ant.taskdefs.Zip.Zip64ModeAttribute
 
 
- 
- Enclosing class:
- Zip
 
 public static final class Zip.Zip64ModeAttribute extends EnumeratedAttribute The choices for Zip64 extensions.never: never add any Zip64 extensions. This will cause the task to fail if you try to add entries bigger than 4GB or create an archive bigger than 4GB or holding more that 65535 entries. as-needed: create Zip64 extensions only when the entry's size is bigger than 4GB or one of the archive limits is hit. This mode also adds partial Zip64 extensions for all deflated entries written by Ant. always: create Zip64 extensions for all entries. Note some ZIP implementations don't handle Zip64 extensions well and others may fail if the Zip64 extra field data is only present inside the local file header but not the central directory - which is what as-needed may result in. Java5 and Microsoft Visual Studio's Extension loader are known to fconsider the archive broken in such cases. If you are targeting such an archiver use the value never unless you know you need Zip64 extensions. - Since:
- Ant 1.9.1
 
- 
- 
Field SummaryFields Modifier and Type Field Description static Zip.Zip64ModeAttributeAS_NEEDEDstatic Zip.Zip64ModeAttributeNEVER- 
Fields inherited from class org.apache.tools.ant.types.EnumeratedAttributevalue
 
- 
 - 
Constructor SummaryConstructors Constructor Description Zip64ModeAttribute()
 - 
Method Summary- 
Methods inherited from class org.apache.tools.ant.types.EnumeratedAttributecontainsValue, getIndex, getInstance, getValue, indexOfValue, setValue, toString
 
- 
 
- 
- 
- 
Field Detail- 
NEVERpublic static final Zip.Zip64ModeAttribute NEVER 
 - 
AS_NEEDEDpublic static final Zip.Zip64ModeAttribute AS_NEEDED 
 
- 
 - 
Method Detail- 
getValuespublic java.lang.String[] getValues() Description copied from class:EnumeratedAttributeThis is the only method a subclass needs to implement.- Specified by:
- getValuesin class- EnumeratedAttribute
- Returns:
- an array holding all possible values of the enumeration.
 The order of elements must be fixed so that indexOfValue(String)always return the same index for the same value.
 
 - 
getModepublic Zip64Mode getMode() 
 
- 
 
-