Record Class StyledEdge<L extends Label>
java.lang.Object
java.lang.Record
org.variantsync.diffdetective.variation.diff.serialize.StyledEdge<L>
public record StyledEdge<L extends Label>(DiffNode<L extends Label> from, DiffNode<L extends Label> to, StyledEdge.Style style)
extends Record
Product of all data relevant for exporting a single edge.
Note that an edge doesn't need to describe a parent child relationship between
from and
to. Information related to the type of the relation between from and to
should be encoded into style.-
Nested Class Summary
Nested Classes -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StyledEdge.Stylestatic final StyledEdge.Stylestatic final StyledEdge.StyleThe field for thefromrecord component.private final StyledEdge.StyleThe field for thestylerecord component.The field for thetorecord component. -
Constructor Summary
ConstructorsConstructorDescriptionStyledEdge(DiffNode<L> from, DiffNode<L> to, StyledEdge.Style style) Creates an instance of aStyledEdgerecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.from()Returns the value of thefromrecord component.final inthashCode()Returns a hash code value for this object.style()Returns the value of thestylerecord component.to()Returns the value of thetorecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
from
The field for thefromrecord component. -
to
The field for thetorecord component. -
style
The field for thestylerecord component. -
BEFORE
-
AFTER
-
ALWAYS
-
-
Constructor Details
-
StyledEdge
Creates an instance of aStyledEdgerecord class.- Parameters:
from- the value for thefromrecord componentto- the value for thetorecord componentstyle- the value for thestylerecord 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. All components in this record class are compared withObjects::equals(Object,Object). -
from
Returns the value of thefromrecord component.- Returns:
- the value of the
fromrecord component
-
to
Returns the value of thetorecord component.- Returns:
- the value of the
torecord component
-
style
Returns the value of thestylerecord component.- Returns:
- the value of the
stylerecord component
-