public class ExplodedArchive extends java.lang.Object implements Archive
Archive implementation backed by an exploded archive directory.Archive.Entry, Archive.EntryFilter| Constructor and Description | 
|---|
| ExplodedArchive(java.io.File root)Create a new  ExplodedArchiveinstance. | 
| ExplodedArchive(java.io.File root,
               boolean recursive)Create a new  ExplodedArchiveinstance. | 
| Modifier and Type | Method and Description | 
|---|---|
| java.util.jar.Manifest | getManifest()Returns the manifest of the archive. | 
| protected Archive | getNestedArchive(Archive.Entry entry) | 
| java.util.Iterator<Archive> | getNestedArchives(Archive.EntryFilter searchFilter,
                 Archive.EntryFilter includeFilter)Returns nested  Archives for entries that match the specified filters. | 
| java.net.URL | getUrl()Returns a URL that can be used to load the archive. | 
| boolean | isExploded()Return if the archive is exploded (already unpacked). | 
| java.util.Iterator<Archive.Entry> | iterator()Return a new iterator for the archive entries. | 
| java.lang.String | toString() | 
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitclose, forEach, getNestedArchives, spliteratorpublic ExplodedArchive(java.io.File root)
ExplodedArchive instance.root - the root directorypublic ExplodedArchive(java.io.File root,
                       boolean recursive)
ExplodedArchive instance.root - the root directoryrecursive - if recursive searching should be used to locate the manifest.
 Defaults to true, directories with a large tree might want to set this to
 false.public java.net.URL getUrl()
                    throws java.net.MalformedURLException
Archivepublic java.util.jar.Manifest getManifest()
                                   throws java.io.IOException
ArchivegetManifest in interface Archivejava.io.IOException - if the manifest cannot be readpublic java.util.Iterator<Archive> getNestedArchives(Archive.EntryFilter searchFilter, Archive.EntryFilter includeFilter) throws java.io.IOException
ArchiveArchives for entries that match the specified filters.getNestedArchives in interface ArchivesearchFilter - filter used to limit when additional sub-entry searching is
 required or null if all entries should be considered.includeFilter - filter used to determine which entries should be included in
 the result or null if all entries should be includedjava.io.IOException - on IO errorpublic java.util.Iterator<Archive.Entry> iterator()
Archiveiterator in interface java.lang.Iterable<Archive.Entry>iterator in interface ArchiveIterable.iterator()protected Archive getNestedArchive(Archive.Entry entry) throws java.io.IOException
java.io.IOExceptionpublic boolean isExploded()
ArchiveisExploded in interface Archivepublic java.lang.String toString()
toString in class java.lang.Object