Record Class ViewEvaluation.DiffStatistics
java.lang.Object
java.lang.Record
org.variantsync.diffdetective.experiments.views.result.ViewEvaluation.DiffStatistics
- Record Components:
nodeCount- The number of nodes contained in the variation diff.annotationNodeCount- The number of annotation nodes in the variation diff.
- Enclosing class:
ViewEvaluation
public static record ViewEvaluation.DiffStatistics(int nodeCount, int annotationNodeCount)
extends Record
Holds various information of a variation diff.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final intThe field for theannotationNodeCountrecord component.private final intThe field for thenodeCountrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionDiffStatistics(int nodeCount, int annotationNodeCount) Creates an instance of aDiffStatisticsrecord class. -
Method Summary
Modifier and TypeMethodDescriptionintReturns the value of theannotationNodeCountrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.intReturns the value of thenodeCountrecord component.of(VariationDiff<?> d) Gathers statistics of a given variation diff.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
nodeCount
private final int nodeCountThe field for thenodeCountrecord component. -
annotationNodeCount
private final int annotationNodeCountThe field for theannotationNodeCountrecord component.
-
-
Constructor Details
-
DiffStatistics
public DiffStatistics(int nodeCount, int annotationNodeCount) Creates an instance of aDiffStatisticsrecord class.- Parameters:
nodeCount- the value for thenodeCountrecord componentannotationNodeCount- the value for theannotationNodeCountrecord component
-
-
Method Details
-
of
Gathers statistics of a given variation diff. This method is side-effect free and will not alter the given diff.- Parameters:
d- A variation diff to extract statistics from.- Returns:
- The extracted statistics.
-
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. All components in this record class are compared with '=='. -
nodeCount
public int nodeCount()Returns the value of thenodeCountrecord component.- Returns:
- the value of the
nodeCountrecord component
-
annotationNodeCount
public int annotationNodeCount()Returns the value of theannotationNodeCountrecord component.- Returns:
- the value of the
annotationNodeCountrecord component
-