Package ai.chatur.cortex
Record Class BranchInfo
java.lang.Object
java.lang.Record
ai.chatur.cortex.BranchInfo
- Record Components:
name- the branch namestarted- when the branch was staged, ornullif no activity was recordedsize- the number of assertion triples staged on the branch, excluding the activity
Summary of a branch pending review, drawn from the provenance activity recorded when the branch
was staged.
-
Constructor Summary
ConstructorsConstructorDescriptionBranchInfo(String name, String started, long size) Creates an instance of aBranchInforecord 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.name()Returns the value of thenamerecord component.longsize()Returns the value of thesizerecord component.started()Returns the value of thestartedrecord component.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 '=='. -
name
Returns the value of thenamerecord component.- Returns:
- the value of the
namerecord component
-
started
Returns the value of thestartedrecord component.- Returns:
- the value of the
startedrecord component
-
size
public long size()Returns the value of thesizerecord component.- Returns:
- the value of the
sizerecord component
-