-
public interface ArchiveEntryRepresents an entry of an archive.
-
-
Method Summary
Modifier and Type Method Description abstract DategetLastModifiedDate()Gets the last modified date of this entry. abstract StringgetName()Gets the name of the entry in this archive. abstract longgetSize()Gets the uncompressed size of this entry. abstract booleanisDirectory()Returns true if this entry refers to a directory. -
-
Method Detail
-
getLastModifiedDate
abstract Date getLastModifiedDate()
Gets the last modified date of this entry.
-
getName
abstract String getName()
Gets the name of the entry in this archive. May refer to a file or directory or other item.
This method returns the raw name as it is stored inside of the archive.
-
getSize
abstract long getSize()
Gets the uncompressed size of this entry. May be -1 (SIZE_UNKNOWN) if the size is unknown
-
isDirectory
abstract boolean isDirectory()
Returns true if this entry refers to a directory.
-
-
-
-