public interface ZipEntrySource
extends java.io.Closeable
| Modifier and Type | Method and Description | 
|---|---|
| void | close()Indicates we are done with reading, and 
  resources may be freed | 
| java.util.Enumeration<? extends org.apache.commons.compress.archivers.zip.ZipArchiveEntry> | getEntries()Returns an Enumeration of all the Entries | 
| org.apache.commons.compress.archivers.zip.ZipArchiveEntry | getEntry(java.lang.String path)Return an entry by its path | 
| java.io.InputStream | getInputStream(org.apache.commons.compress.archivers.zip.ZipArchiveEntry entry)Returns an InputStream of the decompressed 
  data that makes up the entry | 
| boolean | isClosed()Has close been called already? | 
java.util.Enumeration<? extends org.apache.commons.compress.archivers.zip.ZipArchiveEntry> getEntries()
org.apache.commons.compress.archivers.zip.ZipArchiveEntry getEntry(java.lang.String path)
path - the path in unix-notationnull if not foundjava.io.InputStream getInputStream(org.apache.commons.compress.archivers.zip.ZipArchiveEntry entry)
                            throws java.io.IOException
java.io.IOExceptionvoid close()
    throws java.io.IOException
close in interface java.lang.AutoCloseableclose in interface java.io.Closeablejava.io.IOExceptionboolean isClosed()
Copyright 2020 The Apache Software Foundation or its licensors, as applicable.