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.Type
of 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 aLinkNode
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.int
from()
Returns the value of thefrom
record component.final int
hashCode()
Returns a hash code value for this object.int
to()
Returns the value of theto
record component.final String
toString()
Returns a string representation of this record class.type()
Returns the value of thetype
record component.
-
Constructor Details
-
Method Details
-
toString
-
hashCode
-
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 thecompare
method from their corresponding wrapper classes. -
from
-
to
-
type
-