Interface AttachmentArchive

All Known Implementing Classes:
AttachmentArchiveImpl

public interface AttachmentArchive
This interface represents entries of an attachment archive. Empty archives are indistinguishable from corrupt ones.
Since:
v6.4
  • Method Details

    • getTotalNumberOfEntriesAvailable

      @Deprecated int getTotalNumberOfEntriesAvailable()
      Deprecated.
      getTotalEntryCount instead. Since v6.4.
      Returns:
      total number of entries available (can be larger that what was asked for)
    • getTotalEntryCount

      int getTotalEntryCount()
      Returns:
      total number of entries available (can be larger that what was asked for)
    • getEntries

      Returns:
      the list of AttachmentArchiveEntry
    • isMoreAvailable

      @Deprecated boolean isMoreAvailable()
      Deprecated.
      Compare getTotalEntryCount() with size of getEntries() instead. Since v6.4.
      Returns:
      true if there are more entries available in the zip than asked for.