Package 

Interface ArchiveEntry


  • 
    public interface ArchiveEntry
    
                        

    Represents an entry of an archive.

    • Method Summary

      Modifier and Type Method Description
      abstract Date getLastModifiedDate() Gets the last modified date of this entry.
      abstract String getName() Gets the name of the entry in this archive.
      abstract long getSize() Gets the uncompressed size of this entry.
      abstract boolean isDirectory() Returns true if this entry refers to a directory.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • 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.