Interface Archive.Entry
- All Known Implementing Classes:
TgzArchiveWrapper.TgzEntryWrapper
,ZipArchiveWrapper.ZipEntryWrapper
- Enclosing interface:
Archive
public static interface Archive.Entry
The interface
Entry
contains the wrapper definition for an
archive entry.-
Method Summary
Modifier and TypeMethodDescriptiongetName()
The methodgetName
provides means to get the name.boolean
The methodisDirectory
provides means to determine the type.
-
Method Details
-
getName
String getName()The methodgetName
provides means to get the name.- Returns:
- the name
-
isDirectory
boolean isDirectory()The methodisDirectory
provides means to determine the type.- Returns:
- true iff the entry is a directory
-