Record Class ActionEdge
java.lang.Object
java.lang.Record
ch.admin.bit.jeap.reaction.observer.web.models.graph.ActionEdge
- All Implemented Interfaces:
Edge
-
Constructor Summary
ConstructorsConstructorDescriptionActionEdge(EdgeType edgeType, long sourceReactionId, long targetId, NodeType targetNodeType) Creates an instance of aActionEdgerecord class. -
Method Summary
Modifier and TypeMethodDescriptionedgeType()Returns the value of theedgeTyperecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.longReturns the value of thesourceReactionIdrecord component.longtargetId()Returns the value of thetargetIdrecord component.Returns the value of thetargetNodeTyperecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ActionEdge
Creates an instance of aActionEdgerecord class.- Parameters:
edgeType- the value for theedgeTyperecord componentsourceReactionId- the value for thesourceReactionIdrecord componenttargetId- the value for thetargetIdrecord componenttargetNodeType- the value for thetargetNodeTyperecord 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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
edgeType
Returns the value of theedgeTyperecord component.- Returns:
- the value of the
edgeTyperecord component
-
sourceReactionId
public long sourceReactionId()Returns the value of thesourceReactionIdrecord component.- Returns:
- the value of the
sourceReactionIdrecord component
-
targetId
public long targetId()Returns the value of thetargetIdrecord component.- Returns:
- the value of the
targetIdrecord component
-
targetNodeType
Returns the value of thetargetNodeTyperecord component.- Returns:
- the value of the
targetNodeTyperecord component
-