Package org.umlg.sqlg.sql.parse
Record Class RecursiveRepeatStepConfig
java.lang.Object
java.lang.Record
org.umlg.sqlg.sql.parse.RecursiveRepeatStepConfig
public record RecursiveRepeatStepConfig(org.apache.tinkerpop.gremlin.structure.Direction direction, String edge, boolean includeEdge, ReplacedStepTree<org.apache.tinkerpop.gremlin.structure.Vertex,org.apache.tinkerpop.gremlin.structure.Vertex> untilReplacedStepTree, boolean hasNotStepForPathTraversal, boolean hasLoopAndIsStep)
extends Record 
- 
Constructor Summary
ConstructorsConstructorDescriptionRecursiveRepeatStepConfig(org.apache.tinkerpop.gremlin.structure.Direction direction, String edge, boolean includeEdge, ReplacedStepTree<org.apache.tinkerpop.gremlin.structure.Vertex, org.apache.tinkerpop.gremlin.structure.Vertex> untilReplacedStepTree, boolean hasNotStepForPathTraversal, boolean hasLoopAndIsStep) Creates an instance of aRecursiveRepeatStepConfigrecord class. - 
Method Summary
Modifier and TypeMethodDescriptionorg.apache.tinkerpop.gremlin.structure.DirectionReturns the value of thedirectionrecord component.edge()Returns the value of theedgerecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.booleanReturns the value of thehasLoopAndIsSteprecord component.booleanReturns the value of thehasNotStepForPathTraversalrecord component.booleanReturns the value of theincludeEdgerecord component.final StringtoString()Returns a string representation of this record class.ReplacedStepTree<org.apache.tinkerpop.gremlin.structure.Vertex,org.apache.tinkerpop.gremlin.structure.Vertex> Returns the value of theuntilReplacedStepTreerecord component. 
- 
Constructor Details
- 
RecursiveRepeatStepConfig
public RecursiveRepeatStepConfig(org.apache.tinkerpop.gremlin.structure.Direction direction, String edge, boolean includeEdge, ReplacedStepTree<org.apache.tinkerpop.gremlin.structure.Vertex, org.apache.tinkerpop.gremlin.structure.Vertex> untilReplacedStepTree, boolean hasNotStepForPathTraversal, boolean hasLoopAndIsStep) Creates an instance of aRecursiveRepeatStepConfigrecord class.- Parameters:
 direction- the value for thedirectionrecord componentedge- the value for theedgerecord componentincludeEdge- the value for theincludeEdgerecord componentuntilReplacedStepTree- the value for theuntilReplacedStepTreerecord componenthasNotStepForPathTraversal- the value for thehasNotStepForPathTraversalrecord componenthasLoopAndIsStep- the value for thehasLoopAndIsSteprecord 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 '=='. - 
direction
public org.apache.tinkerpop.gremlin.structure.Direction direction()Returns the value of thedirectionrecord component.- Returns:
 - the value of the 
directionrecord component 
 - 
edge
Returns the value of theedgerecord component.- Returns:
 - the value of the 
edgerecord component 
 - 
includeEdge
public boolean includeEdge()Returns the value of theincludeEdgerecord component.- Returns:
 - the value of the 
includeEdgerecord component 
 - 
untilReplacedStepTree
public ReplacedStepTree<org.apache.tinkerpop.gremlin.structure.Vertex,org.apache.tinkerpop.gremlin.structure.Vertex> untilReplacedStepTree()Returns the value of theuntilReplacedStepTreerecord component.- Returns:
 - the value of the 
untilReplacedStepTreerecord component 
 - 
hasNotStepForPathTraversal
public boolean hasNotStepForPathTraversal()Returns the value of thehasNotStepForPathTraversalrecord component.- Returns:
 - the value of the 
hasNotStepForPathTraversalrecord component 
 - 
hasLoopAndIsStep
public boolean hasLoopAndIsStep()Returns the value of thehasLoopAndIsSteprecord component.- Returns:
 - the value of the 
hasLoopAndIsSteprecord component 
 
 -