Zip64Mode

The different modes ZipArchiveOutputStream can operate in.

Since

1.3

See also

Entries

Link copied to clipboard

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

Link copied to clipboard

Don't use Zip64 extensions for any entries.

Link copied to clipboard

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

Link copied to clipboard

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

Functions

Link copied to clipboard
open fun valueOf(name: String): Zip64Mode

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Link copied to clipboard
open fun values(): Array<Zip64Mode>

Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants.