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 classNOP implementation of the name mapper.Fields in org.zeroturnaround.zip declared as NameMapperModifier and TypeFieldDescriptionstatic final NameMapperIdentityNameMapper.INSTANCEprivate final NameMapperZipUtil.BackslashUnpacker.mapperprivate final NameMapperZipUtil.Unpacker.mapperprivate final NameMapperZipUtil.Unwrapper.mapperprivate NameMapperZips.nameMapperMethods in org.zeroturnaround.zip with parameters of type NameMapperModifier and TypeMethodDescriptionZips.nameMapper(NameMapper nameMapper) static voidZipUtil.pack(File sourceDir, File targetZip, NameMapper mapper) Compresses the given directory and all its sub-directories into a ZIP file.static voidZipUtil.pack(File sourceDir, File targetZip, NameMapper mapper, int compressionLevel) Compresses the given directory and all its sub-directories into a ZIP file.static voidZipUtil.pack(File sourceDir, OutputStream os, NameMapper mapper) Compresses the given directory and all of its sub-directories into the passed in stream.static voidZipUtil.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 voidZipUtil.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 voidZipUtil.packEntries(File[] filesToPack, File destZipFile, NameMapper mapper) Compresses the given files into a ZIP file.static voidZipUtil.packEntries(File[] filesToPack, File destZipFile, NameMapper mapper, int compressionLevel) Compresses the given files into a ZIP file.static voidZipUtil.packEntry(File fileToPack, File destZipFile, NameMapper mapper) Compresses the given file into a ZIP file.static voidZipUtil.unpack(File zip, File outputDir, NameMapper mapper) Unpacks a ZIP file to the given directory using a specific Charset for the input file.static voidZipUtil.unpack(File zip, File outputDir, NameMapper mapper, Charset charset) Unpacks a ZIP file to the given directory.static voidZipUtil.unpack(InputStream is, File outputDir, NameMapper mapper) Unpacks a ZIP stream to the given directory.static voidZipUtil.unpack(InputStream is, File outputDir, NameMapper mapper, Charset charset) Unpacks a ZIP stream to the given directory.static voidZipUtil.unwrap(File zip, File outputDir, NameMapper mapper) Unwraps a ZIP file to the given directory shaving of root dir.static voidZipUtil.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)