Uses of Interface
org.zeroturnaround.zip.NameMapper
Packages that use NameMapper
-
Uses of NameMapper in org.zeroturnaround.zip
Classes in org.zeroturnaround.zip that implement NameMapperModifier and TypeClassDescription(package private) final class
NOP implementation of the name mapper.Fields in org.zeroturnaround.zip declared as NameMapperModifier and TypeFieldDescriptionstatic final NameMapper
IdentityNameMapper.INSTANCE
private final NameMapper
ZipUtil.BackslashUnpacker.mapper
private final NameMapper
ZipUtil.Unpacker.mapper
private final NameMapper
ZipUtil.Unwrapper.mapper
private NameMapper
Zips.nameMapper
Methods in org.zeroturnaround.zip with parameters of type NameMapperModifier and TypeMethodDescriptionZips.nameMapper
(NameMapper nameMapper) static void
ZipUtil.pack
(File sourceDir, File targetZip, NameMapper mapper) Compresses the given directory and all its sub-directories into a ZIP file.static void
ZipUtil.pack
(File sourceDir, File targetZip, NameMapper mapper, int compressionLevel) Compresses the given directory and all its sub-directories into a ZIP file.static void
ZipUtil.pack
(File sourceDir, OutputStream os, NameMapper mapper) Compresses the given directory and all of its sub-directories into the passed in stream.static void
ZipUtil.pack
(File sourceDir, OutputStream os, NameMapper mapper, int compressionLevel) Compresses the given directory and all of its sub-directories into the passed in stream.private static void
ZipUtil.pack
(File dir, ZipOutputStream out, NameMapper mapper, String pathPrefix, boolean mustHaveChildren) Compresses the given directory and all its sub-directories into a ZIP file.static void
ZipUtil.packEntries
(File[] filesToPack, File destZipFile, NameMapper mapper) Compresses the given files into a ZIP file.static void
ZipUtil.packEntries
(File[] filesToPack, File destZipFile, NameMapper mapper, int compressionLevel) Compresses the given files into a ZIP file.static void
ZipUtil.packEntry
(File fileToPack, File destZipFile, NameMapper mapper) Compresses the given file into a ZIP file.static void
ZipUtil.unpack
(File zip, File outputDir, NameMapper mapper) Unpacks a ZIP file to the given directory using a specific Charset for the input file.static void
ZipUtil.unpack
(File zip, File outputDir, NameMapper mapper, Charset charset) Unpacks a ZIP file to the given directory.static void
ZipUtil.unpack
(InputStream is, File outputDir, NameMapper mapper) Unpacks a ZIP stream to the given directory.static void
ZipUtil.unpack
(InputStream is, File outputDir, NameMapper mapper, Charset charset) Unpacks a ZIP stream to the given directory.static void
ZipUtil.unwrap
(File zip, File outputDir, NameMapper mapper) Unwraps a ZIP file to the given directory shaving of root dir.static void
ZipUtil.unwrap
(InputStream is, File outputDir, NameMapper mapper) Unwraps a ZIP file to the given directory shaving of root dir.Constructors in org.zeroturnaround.zip with parameters of type NameMapperModifierConstructorDescriptionBackslashUnpacker
(File outputDir, NameMapper mapper) Unpacker
(File outputDir, NameMapper mapper) Unwrapper
(File outputDir, NameMapper mapper)