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 it carries no provenance activityadditions- the number of statements the branch stages for addition, excluding the statements of its own provenance activityretractions- the number of statements the branch stages for removal
public record BranchInfo(String name, String started, long additions, long retractions)
extends Record
A summary of a branch pending review.
The two counts are kept apart because they mean opposite things to a reviewer: a branch that only adds statements can be approved without reading what is already in the graph, and one that removes any cannot.
-
Constructor Summary
ConstructorsConstructorDescriptionBranchInfo(String name, String started, long additions, long retractions) Creates an instance of aBranchInforecord class. -
Method Summary
Modifier and TypeMethodDescriptionlongReturns the value of theadditionsrecord component.final 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.longReturns the value of theretractionsrecord component.started()Returns the value of thestartedrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
BranchInfo
Creates an instance of aBranchInforecord class.- Parameters:
name- the value for thenamerecord componentstarted- the value for thestartedrecord componentadditions- the value for theadditionsrecord componentretractions- the value for theretractionsrecord 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 '=='. -
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
-
additions
public long additions()Returns the value of theadditionsrecord component.- Returns:
- the value of the
additionsrecord component
-
retractions
public long retractions()Returns the value of theretractionsrecord component.- Returns:
- the value of the
retractionsrecord component
-