Uses of Interface
org.apache.tinkerpop.gremlin.process.traversal.step.TraversalParent
-
-
Uses of TraversalParent in org.apache.tinkerpop.gremlin.process.computer.traversal.step.map
Classes in org.apache.tinkerpop.gremlin.process.computer.traversal.step.map that implement TraversalParent Modifier and Type Class Description class
ConnectedComponentVertexProgramStep
class
PageRankVertexProgramStep
class
PeerPressureVertexProgramStep
class
ShortestPathVertexProgramStep
class
TraversalVertexProgramStep
-
Uses of TraversalParent in org.apache.tinkerpop.gremlin.process.remote.traversal
Methods in org.apache.tinkerpop.gremlin.process.remote.traversal that return TraversalParent Modifier and Type Method Description TraversalParent
AbstractRemoteTraversal. getParent()
Methods in org.apache.tinkerpop.gremlin.process.remote.traversal with parameters of type TraversalParent Modifier and Type Method Description void
AbstractRemoteTraversal. setParent(TraversalParent step)
-
Uses of TraversalParent in org.apache.tinkerpop.gremlin.process.traversal
Methods in org.apache.tinkerpop.gremlin.process.traversal that return TraversalParent Modifier and Type Method Description TraversalParent
Traversal.Admin. getParent()
Get theTraversalParent
Step
that is the parent of this traversal.Methods in org.apache.tinkerpop.gremlin.process.traversal with parameters of type TraversalParent Modifier and Type Method Description void
Traversal.Admin. setParent(TraversalParent step)
Set theTraversalParent
Step
that is the parent of this traversal. -
Uses of TraversalParent in org.apache.tinkerpop.gremlin.process.traversal.lambda
Methods in org.apache.tinkerpop.gremlin.process.traversal.lambda that return TraversalParent Modifier and Type Method Description TraversalParent
AbstractLambdaTraversal. getParent()
Methods in org.apache.tinkerpop.gremlin.process.traversal.lambda with parameters of type TraversalParent Modifier and Type Method Description void
AbstractLambdaTraversal. setParent(TraversalParent step)
-
Uses of TraversalParent in org.apache.tinkerpop.gremlin.process.traversal.step
Subinterfaces of TraversalParent in org.apache.tinkerpop.gremlin.process.traversal.step Modifier and Type Interface Description interface
TraversalOptionParent<M,S,E>
Describes steps that can be parent to aTraversal
from theoption()
modulator. -
Uses of TraversalParent in org.apache.tinkerpop.gremlin.process.traversal.step.branch
Classes in org.apache.tinkerpop.gremlin.process.traversal.step.branch that implement TraversalParent Modifier and Type Class Description class
BranchStep<S,E,M>
class
ChooseStep<S,E,M>
A step which offers a choice of two or more Traversals to take.class
LocalStep<S,E>
class
OptionalStep<S>
class
RepeatStep<S>
class
UnionStep<S,E>
-
Uses of TraversalParent in org.apache.tinkerpop.gremlin.process.traversal.step.filter
Classes in org.apache.tinkerpop.gremlin.process.traversal.step.filter that implement TraversalParent Modifier and Type Class Description class
AndStep<S>
class
ConnectiveStep<S>
class
DedupGlobalStep<S>
class
NotStep<S>
class
OrStep<S>
class
PathFilterStep<S>
class
SampleGlobalStep<S>
class
TraversalFilterStep<S>
class
WherePredicateStep<S>
class
WhereTraversalStep<S>
-
Uses of TraversalParent in org.apache.tinkerpop.gremlin.process.traversal.step.map
Classes in org.apache.tinkerpop.gremlin.process.traversal.step.map that implement TraversalParent Modifier and Type Class Description class
AddEdgeStartStep
class
AddEdgeStep<S>
class
AddVertexStartStep
class
AddVertexStep<S>
class
CallStep<S,E>
Reference implementation for service calls via theServiceRegistry
andService
APIs.class
CoalesceStep<S,E>
class
CombineStep<S,E>
A map step that returns the combination of the traverser and the provided arguments.class
ConcatStep<S>
Reference implementation for String concatenation step, a mid-traversal step which concatenates one or more String values together to the incoming String traverser.class
DateDiffStep<S>
Reference implementation for date difference step.class
DifferenceStep<S,E>
A map step that returns the difference of the traverser and the provided arguments without duplicates.class
DisjunctStep<S,E>
A map step that returns the disjunction of the traverser and the provided arguments without duplicates.class
ElementMapStep<K,E>
Converts aElement
to aMap
.class
FormatStep<S>
Reference implementation for String format step, a mid-traversal step which will handle result formatting to string values.class
GroupCountStep<S,E>
class
GroupStep<S,K,V>
class
IndexStep<S,E>
class
IntersectStep<S,E>
A map step that returns the intersection of the traverser and the provided arguments.class
MatchStep<S,E>
class
MathStep<S>
class
MergeEdgeStep<S>
Implementation for themergeE()
step covering both the start step version and the one used mid-traversal.class
MergeStep<S,E,C>
Abstract base class for themergeV/E()
implementations.class
MergeVertexStep<S>
Implementation for themergeV()
step covering both the start step version and the one used mid-traversal.class
OrderGlobalStep<S,C extends Comparable>
class
OrderLocalStep<S,C extends Comparable>
class
PathStep<S>
class
ProductStep<S,E>
A map step that returns the cartesian product of the traverser and the provided arguments.class
ProjectStep<S,E>
class
PropertyMapStep<K,E>
class
SelectOneStep<S,E>
class
SelectStep<S,E>
class
SplitGlobalStep<S,E>
Reference implementation for substring step, a mid-traversal step which returns a list of strings created by splitting the incoming string traverser around the matches of the given separator.class
SplitLocalStep<S,E>
Reference implementation for substring step, a mid-traversal step which returns a list of strings created by splitting the incoming string traverser around the matches of the given separator.class
TraversalFlatMapStep<S,E>
class
TraversalMapStep<S,E>
class
TraversalMergeStep<S,E>
A map step that returns the merger of the traverser and the provided arguments without duplicates.class
TraversalSelectStep<S,E>
class
TreeStep<S>
-
Uses of TraversalParent in org.apache.tinkerpop.gremlin.process.traversal.step.sideEffect
Classes in org.apache.tinkerpop.gremlin.process.traversal.step.sideEffect that implement TraversalParent Modifier and Type Class Description class
AddPropertyStep<S extends Element>
class
AggregateGlobalStep<S>
class
AggregateLocalStep<S>
class
GroupCountSideEffectStep<S,E>
class
GroupSideEffectStep<S,K,V>
class
SackValueStep<S,A,B>
class
TraversalSideEffectStep<S>
class
TreeSideEffectStep<S>
-
Uses of TraversalParent in org.apache.tinkerpop.gremlin.process.traversal.step.util
Classes in org.apache.tinkerpop.gremlin.process.traversal.step.util that implement TraversalParent Modifier and Type Class Description class
EmptyStep<S,E>
Methods in org.apache.tinkerpop.gremlin.process.traversal.step.util with parameters of type TraversalParent Modifier and Type Method Description void
Parameters. set(TraversalParent parent, Object... keyValues)
Set parameters given key/value pairs. -
Uses of TraversalParent in org.apache.tinkerpop.gremlin.process.traversal.util
Fields in org.apache.tinkerpop.gremlin.process.traversal.util declared as TraversalParent Modifier and Type Field Description protected TraversalParent
DefaultTraversal. parent
Methods in org.apache.tinkerpop.gremlin.process.traversal.util that return TraversalParent Modifier and Type Method Description TraversalParent
DefaultTraversal. getParent()
TraversalParent
EmptyTraversal. getParent()
Methods in org.apache.tinkerpop.gremlin.process.traversal.util with parameters of type TraversalParent Modifier and Type Method Description static boolean
TraversalHelper. anyStepRecursively(Predicate<Step> predicate, TraversalParent step)
Determine if any child step of aTraversalParent
match the step given the providedPredicate
.void
DefaultTraversal. setParent(TraversalParent step)
void
EmptyTraversal. setParent(TraversalParent step)
-