Uses of Class
cloud.opencode.base.io.compress.ZipOptions.Builder
Packages that use ZipOptions.Builder
-
Uses of ZipOptions.Builder in cloud.opencode.base.io.compress
Methods in cloud.opencode.base.io.compress that return ZipOptions.BuilderModifier and TypeMethodDescriptionZipOptions.Builder.addExcludePattern(String pattern) Appends a single exclude glob pattern.ZipOptions.Builder.bombProtection(BombProtection protection) Replaces the anti-bomb preset wholesale.static ZipOptions.BuilderZipOptions.builder()Create a fluent builder.ZipOptions.Builder.compressionLevel(int level) Sets the compression level in the[0, 9]range.Sets the filename encoding, e.g.ZipOptions.Builder.encryption(EncryptionMethod encryption) Sets the encryption method.ZipOptions.Builder.excludePatterns(List<String> patterns) Replaces the entire exclude-pattern list with the supplied glob patterns.ZipOptions.Builder.includeRootDir(boolean include) Includes the root directory name as a prefix in entry names when compressing a directory tree.ZipOptions.Builder.maxCompressionRatio(long maxCompressionRatio) Sets the max ratio of decompressed:compressed bytes.ZipOptions.Builder.maxEntryCount(int maxEntryCount) Sets the max number of entries permitted in a single archive.ZipOptions.Builder.maxNestingDepth(int maxNestingDepth) Sets the max nested-ZIP depth (detected by.zipsuffix; payload not magic-byte sniffed).ZipOptions.Builder.maxSingleEntrySize(long maxSingleEntrySize) Sets the max decompressed bytes for any single entry.ZipOptions.Builder.maxTotalSize(long maxTotalSize) Sets the max total decompressed bytes across all entries.ZipOptions.Builder.overwrite(OverwritePolicy policy) Sets the overwrite policy applied during extraction.Sets the encryption password, ornullto disable.ZipOptions.Builder.zip64(boolean zip64) Enables or disables ZIP64 extensions for archives larger than 4 GiB or with more than 65535 entries.