Package 

Enum Zip64Mode

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      Always

      Use Zip64 extensions for all entries, even if it is clear it isnot required.

      Never

      Don't use Zip64 extensions for any entries.

      This will cause a Zip64RequiredException to bethrown if ZipArchiveOutputStream detects it needs Zip64support.

      AsNeeded

      Use Zip64 extensions for all entries where they are required,don't use them for entries that clearly don't require them.

      AlwaysWithCompatibility

      Always use Zip64 extensions for LFH and central directory as Always did, and at the meantime encodethe relative offset of LFH and disk number start as needed inCFH as AsNeeded did.

      This is a compromise for some libraries including 7z andExpand-Archive Powershell utility(and likely Excel).

    • Method Summary

      Modifier and Type Method Description
      static Array<Zip64Mode> values()
      static Zip64Mode valueOf(String name)
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait