Record Class CollectionArchiveService.ArchiveInfo

java.lang.Object
java.lang.Record
io.goobi.viewer.model.export.bagit.CollectionArchiveService.ArchiveInfo
Record Components:
path - the archive file
recordCount - the record count encoded in the file name
maxIndexedMillis - the maximum DATEINDEXED (epoch millis) encoded in the file name
sizeBytes - the archive file size in bytes
Enclosing class:
CollectionArchiveService

public static record CollectionArchiveService.ArchiveInfo(Path path, long recordCount, long maxIndexedMillis, long sizeBytes) extends Record
Immutable description of an existing archive on disk, as recovered from its file name.
  • Constructor Details

    • ArchiveInfo

      public ArchiveInfo(Path path, long recordCount, long maxIndexedMillis, long sizeBytes)
      Creates an instance of a ArchiveInfo record class.
      Parameters:
      path - the value for the path record component
      recordCount - the value for the recordCount record component
      maxIndexedMillis - the value for the maxIndexedMillis record component
      sizeBytes - the value for the sizeBytes record component
  • Method Details

    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with '=='.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • path

      public Path path()
      Returns the value of the path record component.
      Returns:
      the value of the path record component
    • recordCount

      public long recordCount()
      Returns the value of the recordCount record component.
      Returns:
      the value of the recordCount record component
    • maxIndexedMillis

      public long maxIndexedMillis()
      Returns the value of the maxIndexedMillis record component.
      Returns:
      the value of the maxIndexedMillis record component
    • sizeBytes

      public long sizeBytes()
      Returns the value of the sizeBytes record component.
      Returns:
      the value of the sizeBytes record component