Record Class LinkNode
java.lang.Object
java.lang.Record
org.springframework.integration.graph.LinkNode
- Record Components:
from- the source node indexto- the target node indextype- theLinkNode.Typeof this link
Represents a link between nodes.
- Since:
- 4.3
- Author:
- Gary Russell, Artem Bilan
-
Nested Class Summary
Nested Classes -
Constructor Summary
ConstructorsConstructorDescriptionLinkNode(int from, int to, LinkNode.Type type) Creates an instance of aLinkNoderecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.intfrom()Returns the value of thefromrecord component.final inthashCode()Returns a hash code value for this object.intto()Returns the value of thetorecord component.final StringtoString()Returns a string representation of this record class.type()Returns the value of thetyperecord component.
-
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 '=='. -
from
public int from()Returns the value of thefromrecord component.- Returns:
- the value of the
fromrecord component
-
to
public int to()Returns the value of thetorecord component.- Returns:
- the value of the
torecord component
-
type
Returns the value of thetyperecord component.- Returns:
- the value of the
typerecord component
-