Record Class ActionEdgeDto
java.lang.Object
java.lang.Record
ch.admin.bit.jeap.reaction.observer.web.models.graph.ActionEdgeDto
- All Implemented Interfaces:
EdgeDto
public record ActionEdgeDto(long sourceReactionId, long targetId, NodeDtoType targetNodeType)
extends Record
implements EdgeDto
-
Constructor Summary
ConstructorsConstructorDescriptionActionEdgeDto(long sourceReactionId, long targetId, NodeDtoType targetNodeType) Creates an instance of aActionEdgeDtorecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.static ActionEdgeDtofrom(ch.admin.bit.jeap.reaction.observer.domain.models.graph.Action action) 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
-
ActionEdgeDto
Creates an instance of aActionEdgeDtorecord class.- Parameters:
sourceReactionId- the value for thesourceReactionIdrecord componenttargetId- the value for thetargetIdrecord componenttargetNodeType- the value for thetargetNodeTyperecord component
-
-
Method Details
-
from
public static ActionEdgeDto from(ch.admin.bit.jeap.reaction.observer.domain.models.graph.Action action) -
getCanonicalId
- Specified by:
getCanonicalIdin interfaceEdgeDto
-
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 '=='. -
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
-