Package edu.ucsb.cs.scaffold.controller
Record Class ConceptsController.CycleEdgeDTO
java.lang.Object
java.lang.Record
edu.ucsb.cs.scaffold.controller.ConceptsController.CycleEdgeDTO
- Enclosing class:
ConceptsController
-
Constructor Summary
ConstructorsConstructorDescriptionCycleEdgeDTO(Long edgeId, Long sourceId, Long targetId) Creates an instance of aCycleEdgeDTOrecord class. -
Method Summary
Modifier and TypeMethodDescriptionedgeId()Returns the value of theedgeIdrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.sourceId()Returns the value of thesourceIdrecord component.targetId()Returns the value of thetargetIdrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
CycleEdgeDTO
Creates an instance of aCycleEdgeDTOrecord class.- Parameters:
edgeId- the value for theedgeIdrecord componentsourceId- the value for thesourceIdrecord componenttargetId- the value for thetargetIdrecord 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). -
edgeId
Returns the value of theedgeIdrecord component.- Returns:
- the value of the
edgeIdrecord component
-
sourceId
Returns the value of thesourceIdrecord component.- Returns:
- the value of the
sourceIdrecord component
-
targetId
Returns the value of thetargetIdrecord component.- Returns:
- the value of the
targetIdrecord component
-