Record Class CollectionArchiveService.GenerationResult
java.lang.Object
java.lang.Record
io.goobi.viewer.model.export.bagit.CollectionArchiveService.GenerationResult
- Record Components:
generated- true if an archive was (re)written, false if the run was skippeddetail- human-readable detail — a content summary when generated, or the skip reason otherwise
- Enclosing class:
CollectionArchiveService
-
Constructor Summary
ConstructorsConstructorDescriptionGenerationResult(boolean generated, String detail) Creates an instance of aGenerationResultrecord class. -
Method Summary
Modifier and TypeMethodDescriptiondetail()Returns the value of thedetailrecord component.final booleanIndicates whether some other object is "equal to" this one.booleanReturns the value of thegeneratedrecord component.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
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 '=='. -
generated
public boolean generated()Returns the value of thegeneratedrecord component.- Returns:
- the value of the
generatedrecord component
-
detail
Returns the value of thedetailrecord component.- Returns:
- the value of the
detailrecord component
-