Interface Archive.Entry
- 
- Enclosing interface:
 - Archive
 
public static interface Archive.EntryEntry of an archive 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Archive.EntrygetChild(java.lang.String name)Returns the child entry with the given name.java.util.Collection<? extends Archive.Entry>getChildren()Returns a collection of child entries.java.lang.StringgetName()Returns the (file) name of the entrybooleanisDirectory()Returnstrueif the entry designates a directory. 
 - 
 
- 
- 
Method Detail
- 
getName
@Nonnull java.lang.String getName()
Returns the (file) name of the entry- Returns:
 - the name
 
 
- 
isDirectory
boolean isDirectory()
Returnstrueif the entry designates a directory.- Returns:
 trueif the entry designates a directory.
 
- 
getChildren
@Nonnull java.util.Collection<? extends Archive.Entry> getChildren()
Returns a collection of child entries.- Returns:
 - a collection of child entries.
 
 
- 
getChild
@CheckForNull Archive.Entry getChild(@Nonnull java.lang.String name)
Returns the child entry with the given name.- Parameters:
 name- name of the child entry- Returns:
 - the entry or 
nullif does not exist. 
 
 - 
 
 -