Uses of Class
org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversalSource
-
-
Uses of GraphTraversalSource in org.apache.tinkerpop.gremlin
Fields in org.apache.tinkerpop.gremlin declared as GraphTraversalSource Modifier and Type Field Description protected GraphTraversalSource
AbstractGremlinTest. g
Methods in org.apache.tinkerpop.gremlin that return GraphTraversalSource Modifier and Type Method Description GraphTraversalSource
GraphManager.ManagedGraphProvider. traversal(Graph graph)
GraphTraversalSource
GraphManager.ManagedGraphProvider. traversal(Graph graph, TraversalStrategy... strategies)
default GraphTraversalSource
GraphProvider. traversal(Graph graph)
Create aGraphTraversalSource
from aGraph
instance.default GraphTraversalSource
GraphProvider. traversal(Graph graph, TraversalStrategy... strategies)
Create aGraphTraversalSource
from aGraph
instance. -
Uses of GraphTraversalSource in org.apache.tinkerpop.gremlin.groovy.jsr223.dsl.credential
Subclasses of GraphTraversalSource in org.apache.tinkerpop.gremlin.groovy.jsr223.dsl.credential Modifier and Type Class Description class
CredentialTraversalSource
class
CredentialTraversalSourceDsl
-
Uses of GraphTraversalSource in org.apache.tinkerpop.gremlin.groovy.loaders
Methods in org.apache.tinkerpop.gremlin.groovy.loaders with parameters of type GraphTraversalSource Modifier and Type Method Description static Object
SugarLoader.GraphTraversalSourceCategory. get(GraphTraversalSource graphTraversalSource, String key)
-
Uses of GraphTraversalSource in org.apache.tinkerpop.gremlin.language.grammar
Fields in org.apache.tinkerpop.gremlin.language.grammar declared as GraphTraversalSource Modifier and Type Field Description protected GraphTraversalSource
TraversalSourceSpawnMethodVisitor. traversalSource
Constructors in org.apache.tinkerpop.gremlin.language.grammar with parameters of type GraphTraversalSource Constructor Description GremlinAntlrToJava(String traversalSourceName, Graph graph, Supplier<GraphTraversal<?,?>> createAnonymous, GraphTraversalSource g)
GremlinAntlrToJava(GraphTraversalSource g)
Constructs a new instance that is bound to the specifiedGraphTraversalSource
and thus spawns theTraversal
from this "g" rather than from a fresh one constructed from theGraph
instance.GremlinAntlrToJava(GraphTraversalSource g, Supplier<GraphTraversal<?,?>> createAnonymous)
Constructs a new instance that is bound to the specifiedGraphTraversalSource
and thus spawns theTraversal
from this "g" rather than from a fresh one constructed from theGraph
instance.TraversalSourceSelfMethodVisitor(GraphTraversalSource source, GremlinAntlrToJava antlr)
TraversalSourceSpawnMethodVisitor(GraphTraversalSource traversalSource, DefaultGremlinBaseVisitor<Traversal> anonymousVisitor)
TraversalSourceTxVisitor(GraphTraversalSource source, GremlinAntlrToJava antlr)
-
Uses of GraphTraversalSource in org.apache.tinkerpop.gremlin.process.computer.search.path
Constructors in org.apache.tinkerpop.gremlin.process.computer.search.path with parameters of type GraphTraversalSource Constructor Description ShortestPathTestHelper(AbstractGremlinProcessTest test, GraphTraversalSource g)
-
Uses of GraphTraversalSource in org.apache.tinkerpop.gremlin.process.remote
Constructors in org.apache.tinkerpop.gremlin.process.remote with parameters of type GraphTraversalSource Constructor Description EmbeddedRemoteConnection(GraphTraversalSource g)
-
Uses of GraphTraversalSource in org.apache.tinkerpop.gremlin.process.traversal
Fields in org.apache.tinkerpop.gremlin.process.traversal with type parameters of type GraphTraversalSource Modifier and Type Field Description Function<GraphTraversalSource,GraphTraversal<?,?>>
TraversalInterruptionTest. traversalBeforePause
Function<GraphTraversalSource,GraphTraversal<?,?>>
TraversalInterruptionComputerTest. traversalMaker
Methods in org.apache.tinkerpop.gremlin.process.traversal that return types with arguments of type GraphTraversalSource Modifier and Type Method Description static AnonymousTraversalSource<GraphTraversalSource>
AnonymousTraversalSource. traversal()
Constructs anAnonymousTraversalSource
which will then be configured to spawn aGraphTraversalSource
. -
Uses of GraphTraversalSource in org.apache.tinkerpop.gremlin.process.traversal.dsl.graph
Methods in org.apache.tinkerpop.gremlin.process.traversal.dsl.graph that return GraphTraversalSource Modifier and Type Method Description GraphTraversalSource
GraphTraversalSource. clone()
GraphTraversalSource
GraphTraversalSource. with(String key)
Provides a configuration to a traversal in the form of a key which is the same aswith(key, true)
.GraphTraversalSource
GraphTraversalSource. with(String key, Object value)
Provides a configuration to a traversal in the form of a key value pair.GraphTraversalSource
GraphTraversalSource. withBulk(boolean useBulk)
GraphTraversalSource
GraphTraversalSource. withComputer()
Add the standardGraphComputer
of the graph that will be used to execute the traversal.GraphTraversalSource
GraphTraversalSource. withComputer(Class<? extends GraphComputer> graphComputerClass)
Add aGraphComputer
class used to execute the traversal.GraphTraversalSource
GraphTraversalSource. withComputer(Computer computer)
Add aComputer
that will generate aGraphComputer
from theGraph
that will be used to execute the traversal.GraphTraversalSource
GraphTraversalSource. withoutStrategies(Class<? extends TraversalStrategy>... traversalStrategyClasses)
Remove an arbitrary collection ofTraversalStrategy
classes from the traversal source.GraphTraversalSource
GraphTraversalSource. withPath()
<A> GraphTraversalSource
GraphTraversalSource. withSack(A initialValue)
Add a sack to be used throughout the life of a spawnedTraversal
.<A> GraphTraversalSource
GraphTraversalSource. withSack(A initialValue, BinaryOperator<A> mergeOperator)
Add a sack to be used throughout the life of a spawnedTraversal
.<A> GraphTraversalSource
GraphTraversalSource. withSack(A initialValue, UnaryOperator<A> splitOperator)
Add a sack to be used throughout the life of a spawnedTraversal
.<A> GraphTraversalSource
GraphTraversalSource. withSack(A initialValue, UnaryOperator<A> splitOperator, BinaryOperator<A> mergeOperator)
Add a sack to be used throughout the life of a spawnedTraversal
.<A> GraphTraversalSource
GraphTraversalSource. withSack(Supplier<A> initialValue)
Add a sack to be used throughout the life of a spawnedTraversal
.<A> GraphTraversalSource
GraphTraversalSource. withSack(Supplier<A> initialValue, BinaryOperator<A> mergeOperator)
Add a sack to be used throughout the life of a spawnedTraversal
.<A> GraphTraversalSource
GraphTraversalSource. withSack(Supplier<A> initialValue, UnaryOperator<A> splitOperator)
Add a sack to be used throughout the life of a spawnedTraversal
.<A> GraphTraversalSource
GraphTraversalSource. withSack(Supplier<A> initialValue, UnaryOperator<A> splitOperator, BinaryOperator<A> mergeOperator)
Add a sack to be used throughout the life of a spawnedTraversal
.<A> GraphTraversalSource
GraphTraversalSource. withSideEffect(String key, A initialValue)
Add a sideEffect to be used throughout the life of a spawnedTraversal
.<A> GraphTraversalSource
GraphTraversalSource. withSideEffect(String key, A initialValue, BinaryOperator<A> reducer)
Add a sideEffect to be used throughout the life of a spawnedTraversal
.<A> GraphTraversalSource
GraphTraversalSource. withSideEffect(String key, Supplier<A> initialValue)
Add a sideEffect to be used throughout the life of a spawnedTraversal
.<A> GraphTraversalSource
GraphTraversalSource. withSideEffect(String key, Supplier<A> initialValue, BinaryOperator<A> reducer)
Add a sideEffect to be used throughout the life of a spawnedTraversal
.GraphTraversalSource
GraphTraversalSource. withStrategies(TraversalStrategy... traversalStrategies)
Add an arbitrary collection ofTraversalStrategy
instances to the traversal source.Constructors in org.apache.tinkerpop.gremlin.process.traversal.dsl.graph with parameters of type GraphTraversalSource Constructor Description DefaultGraphTraversal(GraphTraversalSource graphTraversalSource)
-
Uses of GraphTraversalSource in org.apache.tinkerpop.gremlin.structure
Methods in org.apache.tinkerpop.gremlin.structure that return GraphTraversalSource Modifier and Type Method Description default GraphTraversalSource
Graph. traversal()
Generate a reusableGraphTraversalSource
instance.
-