| Modifier and Type | Field and Description | 
|---|---|
| protected GraphTraversalSource | AbstractGremlinTest. g | 
| Modifier and Type | Method and Description | 
|---|---|
| default GraphTraversalSource | GraphProvider. traversal(Graph graph)Create a  GraphTraversalSourcefrom aGraphinstance. | 
| GraphTraversalSource | GraphManager.ManagedGraphProvider. traversal(Graph graph) | 
| default GraphTraversalSource | GraphProvider. traversal(Graph graph,
         TraversalStrategy... strategies)Create a  GraphTraversalSourcefrom aGraphinstance. | 
| GraphTraversalSource | GraphManager.ManagedGraphProvider. traversal(Graph graph,
         TraversalStrategy... strategies) | 
| Modifier and Type | Method and Description | 
|---|---|
| GraphTraversalSource | World. getGraphTraversalSource(LoadGraphWith.GraphData graphData)Gets a  GraphTraversalSourcethat is backed by the specifiedLoadGraphWith.GraphData. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | CredentialTraversalSource | 
| class  | CredentialTraversalSourceDsl | 
| Modifier and Type | Method and Description | 
|---|---|
| static Object | SugarLoader.GraphTraversalSourceCategory. get(GraphTraversalSource graphTraversalSource,
   String key) | 
| Modifier and Type | Field and Description | 
|---|---|
| protected GraphTraversalSource | TraversalSourceSpawnMethodVisitor. traversalSource | 
| Constructor and Description | 
|---|
| GremlinAntlrToJava(GraphTraversalSource g)Constructs a new instance that is bound to the specified  GraphTraversalSourceand thus spawns theTraversalfrom this "g" rather than from a fresh one constructed from theGraphinstance. | 
| GremlinAntlrToJava(GraphTraversalSource g,
                  Supplier<GraphTraversal<?,?>> createAnonymous)Constructs a new instance that is bound to the specified  GraphTraversalSourceand thus spawns theTraversalfrom this "g" rather than from a fresh one constructed from theGraphinstance. | 
| GremlinAntlrToJava(String traversalSourceName,
                  Graph graph,
                  Supplier<GraphTraversal<?,?>> createAnonymous,
                  GraphTraversalSource g) | 
| TraversalSourceSelfMethodVisitor(GraphTraversalSource source,
                                GremlinAntlrToJava antlr) | 
| TraversalSourceSpawnMethodVisitor(GraphTraversalSource traversalSource,
                                 DefaultGremlinBaseVisitor<Traversal> anonymousVisitor) | 
| TraversalSourceTxVisitor(GraphTraversalSource source,
                        GremlinAntlrToJava antlr) | 
| Constructor and Description | 
|---|
| ShortestPathTestHelper(AbstractGremlinProcessTest test,
                      GraphTraversalSource g) | 
| Constructor and Description | 
|---|
| EmbeddedRemoteConnection(GraphTraversalSource g) | 
| Modifier and Type | Field and Description | 
|---|---|
| Function<GraphTraversalSource,GraphTraversal<?,?>> | TraversalInterruptionTest. traversalBeforePause | 
| Function<GraphTraversalSource,GraphTraversal<?,?>> | TraversalInterruptionComputerTest. traversalMaker | 
| Modifier and Type | Method and Description | 
|---|---|
| static AnonymousTraversalSource<GraphTraversalSource> | AnonymousTraversalSource. traversal()Constructs an  AnonymousTraversalSourcewhich will then be configured to spawn aGraphTraversalSource. | 
| Modifier and Type | Method and 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 as  with(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 standard  GraphComputerof the graph that will be used to execute the traversal. | 
| GraphTraversalSource | GraphTraversalSource. withComputer(Class<? extends GraphComputer> graphComputerClass)Add a  GraphComputerclass used to execute the traversal. | 
| GraphTraversalSource | GraphTraversalSource. withComputer(Computer computer)Add a  Computerthat will generate aGraphComputerfrom theGraphthat will be used to execute the traversal. | 
| GraphTraversalSource | GraphTraversalSource. withoutStrategies(Class<? extends TraversalStrategy>... traversalStrategyClasses)Remove an arbitrary collection of  TraversalStrategyclasses from the traversal source. | 
| GraphTraversalSource | GraphTraversalSource. withPath() | 
| <A> GraphTraversalSource | GraphTraversalSource. withSack(A initialValue)Add a sack to be used throughout the life of a spawned  Traversal. | 
| <A> GraphTraversalSource | GraphTraversalSource. withSack(A initialValue,
        BinaryOperator<A> mergeOperator)Add a sack to be used throughout the life of a spawned  Traversal. | 
| <A> GraphTraversalSource | GraphTraversalSource. withSack(A initialValue,
        UnaryOperator<A> splitOperator)Add a sack to be used throughout the life of a spawned  Traversal. | 
| <A> GraphTraversalSource | GraphTraversalSource. withSack(A initialValue,
        UnaryOperator<A> splitOperator,
        BinaryOperator<A> mergeOperator)Add a sack to be used throughout the life of a spawned  Traversal. | 
| <A> GraphTraversalSource | GraphTraversalSource. withSack(Supplier<A> initialValue)Add a sack to be used throughout the life of a spawned  Traversal. | 
| <A> GraphTraversalSource | GraphTraversalSource. withSack(Supplier<A> initialValue,
        BinaryOperator<A> mergeOperator)Add a sack to be used throughout the life of a spawned  Traversal. | 
| <A> GraphTraversalSource | GraphTraversalSource. withSack(Supplier<A> initialValue,
        UnaryOperator<A> splitOperator)Add a sack to be used throughout the life of a spawned  Traversal. | 
| <A> GraphTraversalSource | GraphTraversalSource. withSack(Supplier<A> initialValue,
        UnaryOperator<A> splitOperator,
        BinaryOperator<A> mergeOperator)Add a sack to be used throughout the life of a spawned  Traversal. | 
| <A> GraphTraversalSource | GraphTraversalSource. withSideEffect(String key,
              A initialValue)Add a sideEffect to be used throughout the life of a spawned  Traversal. | 
| <A> GraphTraversalSource | GraphTraversalSource. withSideEffect(String key,
              A initialValue,
              BinaryOperator<A> reducer)Add a sideEffect to be used throughout the life of a spawned  Traversal. | 
| <A> GraphTraversalSource | GraphTraversalSource. withSideEffect(String key,
              Supplier<A> initialValue)Add a sideEffect to be used throughout the life of a spawned  Traversal. | 
| <A> GraphTraversalSource | GraphTraversalSource. withSideEffect(String key,
              Supplier<A> initialValue,
              BinaryOperator<A> reducer)Add a sideEffect to be used throughout the life of a spawned  Traversal. | 
| GraphTraversalSource | GraphTraversalSource. withStrategies(TraversalStrategy... traversalStrategies)Add an arbitrary collection of  TraversalStrategyinstances to the traversal source. | 
| Constructor and Description | 
|---|
| DefaultGraphTraversal(GraphTraversalSource graphTraversalSource) | 
| Modifier and Type | Method and Description | 
|---|---|
| default GraphTraversalSource | Graph. traversal()Generate a reusable  GraphTraversalSourceinstance. | 
Copyright © 2013–2022 Apache Software Foundation. All rights reserved.