Uses of Interface
org.zeroturnaround.zip.ZipEntryCallback
Packages that use ZipEntryCallback
-
Uses of ZipEntryCallback in org.zeroturnaround.zip
Classes in org.zeroturnaround.zip that implement ZipEntryCallbackModifier and TypeClassDescription(package private) class
private static class
private static class
static class
Unpacks each ZIP entries.private static class
Copies an entry into a byte array.private static class
Copies an entry into a File.private static final class
RepackZipEntryCallback used in repacking methods.private static class
ZipEntryCallback which is only applied to single entry.private static class
private static class
Unpacks each ZIP entry.private static class
Unwraps entries excluding a single parent dir.Fields in org.zeroturnaround.zip declared as ZipEntryCallbackModifier and TypeFieldDescriptionprivate final ZipEntryCallback
ZipUtil.SingleZipEntryCallback.action
private final ZipEntryCallback
ZipEntryOrInfoAdapter.entryCallback
Methods in org.zeroturnaround.zip with parameters of type ZipEntryCallbackModifier and TypeMethodDescriptionstatic boolean
ZipUtil.handle
(File zip, String name, ZipEntryCallback action) Reads the given ZIP file and executes the given action for a single entry.static boolean
ZipUtil.handle
(InputStream is, String name, ZipEntryCallback action) Reads the given ZIP stream and executes the given action for a single entry.void
Zips.iterate
(ZipEntryCallback zipEntryCallback) Reads the source ZIP file and executes the given callback for each entry.static void
ZipUtil.iterate
(File zip, String[] entryNames, ZipEntryCallback action) Reads the given ZIP file and executes the given action for each given entry.static void
ZipUtil.iterate
(File zip, String[] entryNames, ZipEntryCallback action, Charset charset) Reads the given ZIP file and executes the given action for each given entry.static void
ZipUtil.iterate
(File zip, ZipEntryCallback action) Reads the given ZIP file and executes the given action for each entry.static void
ZipUtil.iterate
(File zip, ZipEntryCallback action, Charset charset) Reads the given ZIP file and executes the given action for each entry.static void
ZipUtil.iterate
(InputStream is, String[] entryNames, ZipEntryCallback action) static void
ZipUtil.iterate
(InputStream is, String[] entryNames, ZipEntryCallback action, Charset charset) Reads the given ZIP stream and executes the given action for each given entry.static void
ZipUtil.iterate
(InputStream is, ZipEntryCallback action) static void
ZipUtil.iterate
(InputStream is, ZipEntryCallback action, Charset charset) Reads the given ZIP stream and executes the given action for each entry.Constructors in org.zeroturnaround.zip with parameters of type ZipEntryCallbackModifierConstructorDescriptionSingleZipEntryCallback
(String name, ZipEntryCallback action) ZipEntryOrInfoAdapter
(ZipEntryCallback entryCallback, ZipInfoCallback infoCallback)