Record Class CollectionArchiveService.ArchiveInfo
java.lang.Object
java.lang.Record
io.goobi.viewer.model.export.bagit.CollectionArchiveService.ArchiveInfo
- Record Components:
path- the archive filerecordCount- the record count encoded in the file namemaxIndexedMillis- the maximum DATEINDEXED (epoch millis) encoded in the file namesizeBytes- 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 Summary
ConstructorsConstructorDescriptionArchiveInfo(Path path, long recordCount, long maxIndexedMillis, long sizeBytes) Creates an instance of aArchiveInforecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.longReturns the value of themaxIndexedMillisrecord component.path()Returns the value of thepathrecord component.longReturns the value of therecordCountrecord component.longReturns the value of thesizeBytesrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ArchiveInfo
Creates an instance of aArchiveInforecord class.- Parameters:
path- the value for thepathrecord componentrecordCount- the value for therecordCountrecord componentmaxIndexedMillis- the value for themaxIndexedMillisrecord componentsizeBytes- the value for thesizeBytesrecord component
-
-
Method Details
-
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. -
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. -
equals
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 withObjects::equals(Object,Object); primitive components are compared with '=='. -
path
Returns the value of thepathrecord component.- Returns:
- the value of the
pathrecord component
-
recordCount
public long recordCount()Returns the value of therecordCountrecord component.- Returns:
- the value of the
recordCountrecord component
-
maxIndexedMillis
public long maxIndexedMillis()Returns the value of themaxIndexedMillisrecord component.- Returns:
- the value of the
maxIndexedMillisrecord component
-
sizeBytes
public long sizeBytes()Returns the value of thesizeBytesrecord component.- Returns:
- the value of the
sizeBytesrecord component
-