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
Modifier and TypeFieldDescriptionprivate final int
The field for theannotationNodeCount
record component.private final int
The field for thenodeCount
record component. -
Constructor Summary
ConstructorDescriptionDiffStatistics
(int nodeCount, int annotationNodeCount) Creates an instance of aDiffStatistics
record class. -
Method Summary
Modifier and TypeMethodDescriptionint
Returns the value of theannotationNodeCount
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.int
Returns the value of thenodeCount
record component.of
(VariationDiff<?> d) Gathers statistics of a given variation diff.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
nodeCount
private final int nodeCountThe field for thenodeCount
record component. -
annotationNodeCount
private final int annotationNodeCountThe field for theannotationNodeCount
record component.
-
-
Constructor Details
-
DiffStatistics
public DiffStatistics(int nodeCount, int annotationNodeCount) Creates an instance of aDiffStatistics
record class.- Parameters:
nodeCount
- the value for thenodeCount
record componentannotationNodeCount
- the value for theannotationNodeCount
record 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 thenodeCount
record component.- Returns:
- the value of the
nodeCount
record component
-
annotationNodeCount
public int annotationNodeCount()Returns the value of theannotationNodeCount
record component.- Returns:
- the value of the
annotationNodeCount
record component
-