Package org.umlg.sqlg.sql.parse
Record Class PGRoutingDijkstraConfig
java.lang.Object
java.lang.Record
org.umlg.sqlg.sql.parse.PGRoutingDijkstraConfig
-
Constructor Summary
ConstructorsConstructorDescriptionPGRoutingDijkstraConfig(String name, List<Long> start_vids, List<Long> end_vids, boolean directed, VertexLabel vertexLabel, EdgeLabel edgeLabel) Creates an instance of aPGRoutingDijkstraConfigrecord class. -
Method Summary
Modifier and TypeMethodDescriptionbooleandirected()Returns the value of thedirectedrecord component.Returns the value of theedgeLabelrecord component.end_vids()Returns the value of theend_vidsrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.name()Returns the value of thenamerecord component.Returns the value of thestart_vidsrecord component.final StringtoString()Returns a string representation of this record class.Returns the value of thevertexLabelrecord component.
-
Constructor Details
-
PGRoutingDijkstraConfig
public PGRoutingDijkstraConfig(String name, List<Long> start_vids, List<Long> end_vids, boolean directed, VertexLabel vertexLabel, EdgeLabel edgeLabel) Creates an instance of aPGRoutingDijkstraConfigrecord class.- Parameters:
name- the value for thenamerecord componentstart_vids- the value for thestart_vidsrecord componentend_vids- the value for theend_vidsrecord componentdirected- the value for thedirectedrecord componentvertexLabel- the value for thevertexLabelrecord componentedgeLabel- the value for theedgeLabelrecord component
-
-
Method Details
-
toStartVidsString
-
toEndVidsString
-
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 '=='. -
name
Returns the value of thenamerecord component.- Returns:
- the value of the
namerecord component
-
start_vids
Returns the value of thestart_vidsrecord component.- Returns:
- the value of the
start_vidsrecord component
-
end_vids
Returns the value of theend_vidsrecord component.- Returns:
- the value of the
end_vidsrecord component
-
directed
public boolean directed()Returns the value of thedirectedrecord component.- Returns:
- the value of the
directedrecord component
-
vertexLabel
Returns the value of thevertexLabelrecord component.- Returns:
- the value of the
vertexLabelrecord component
-
edgeLabel
Returns the value of theedgeLabelrecord component.- Returns:
- the value of the
edgeLabelrecord component
-