| Modifier and Type | Field and Description | 
|---|---|
protected GraphTraversalSource | 
AbstractGremlinTest.g  | 
| Modifier and Type | Method and Description | 
|---|---|
default GraphTraversalSource | 
GraphProvider.traversal(Graph graph)
Create a  
GraphTraversalSource from a Graph instance. | 
GraphTraversalSource | 
GraphManager.ManagedGraphProvider.traversal(Graph graph)  | 
default GraphTraversalSource | 
GraphProvider.traversal(Graph graph,
         TraversalStrategy... strategies)
Create a  
GraphTraversalSource from a Graph instance. | 
GraphTraversalSource | 
GraphManager.ManagedGraphProvider.traversal(Graph graph,
         TraversalStrategy... strategies)  | 
| Modifier and Type | Method and Description | 
|---|---|
default Edge | 
BulkLoader.createEdge(Edge edge,
          Vertex outVertex,
          Vertex inVertex,
          Graph graph,
          GraphTraversalSource g)
Creates a clone of the given edge between the given in- and out-vertices. 
 | 
default VertexProperty | 
BulkLoader.createVertexProperty(VertexProperty<?> property,
                    Vertex vertex,
                    Graph graph,
                    GraphTraversalSource g)
Creates a clone of the given property for the given vertex. 
 | 
Edge | 
OneTimeBulkLoader.getOrCreateEdge(Edge edge,
               Vertex outVertex,
               Vertex inVertex,
               Graph graph,
               GraphTraversalSource g)
Creates a clone of the given edge between the given in- and out-vertices. 
 | 
Edge | 
BulkLoader.getOrCreateEdge(Edge edge,
               Vertex outVertex,
               Vertex inVertex,
               Graph graph,
               GraphTraversalSource g)
Gets or creates a clone of the given edge between the given in- and out-vertices. 
 | 
Edge | 
IncrementalBulkLoader.getOrCreateEdge(Edge edge,
               Vertex outVertex,
               Vertex inVertex,
               Graph graph,
               GraphTraversalSource g)
Gets or creates a clone of the given edge between the given in- and out-vertices. 
 | 
Vertex | 
OneTimeBulkLoader.getOrCreateVertex(Vertex vertex,
                 Graph graph,
                 GraphTraversalSource g)
Creates a clone of the given vertex in the given graph. 
 | 
Vertex | 
BulkLoader.getOrCreateVertex(Vertex vertex,
                 Graph graph,
                 GraphTraversalSource g)
Gets or creates a clone of the given vertex in the given graph. 
 | 
Vertex | 
IncrementalBulkLoader.getOrCreateVertex(Vertex vertex,
                 Graph graph,
                 GraphTraversalSource g)
Gets or creates a clone of the given vertex in the given graph. 
 | 
VertexProperty | 
OneTimeBulkLoader.getOrCreateVertexProperty(VertexProperty<?> property,
                         Vertex vertex,
                         Graph graph,
                         GraphTraversalSource g)
Creates a clone of the given property for the given vertex. 
 | 
VertexProperty | 
BulkLoader.getOrCreateVertexProperty(VertexProperty<?> property,
                         Vertex vertex,
                         Graph graph,
                         GraphTraversalSource g)
Gets or creates a clone of the given property for the given vertex. 
 | 
VertexProperty | 
IncrementalBulkLoader.getOrCreateVertexProperty(VertexProperty<?> property,
                         Vertex vertex,
                         Graph graph,
                         GraphTraversalSource g)
Gets or creates a clone of the given property for the given vertex. 
 | 
Vertex | 
OneTimeBulkLoader.getVertex(Vertex vertex,
         Graph graph,
         GraphTraversalSource g)
Get a vertex that matches the given vertex from the given graph. 
 | 
Vertex | 
BulkLoader.getVertex(Vertex vertex,
         Graph graph,
         GraphTraversalSource g)
Get a vertex that matches the given vertex from the given graph. 
 | 
Vertex | 
IncrementalBulkLoader.getVertex(Vertex vertex,
         Graph graph,
         GraphTraversalSource g)
Get a vertex that matches the given vertex from the given graph. 
 | 
default Vertex | 
BulkLoader.getVertexById(Object id,
             Graph graph,
             GraphTraversalSource g)
Gets a vertex by its ID from the given graph. 
 | 
| Modifier and Type | Field and Description | 
|---|---|
Function<GraphTraversalSource,GraphTraversal<?,?>> | 
TraversalInterruptionTest.traversalBeforePause  | 
Function<GraphTraversalSource,GraphTraversal<?,?>> | 
TraversalInterruptionComputerTest.traversalMaker  | 
| Modifier and Type | Method and Description | 
|---|---|
GraphTraversalSource | 
GraphTraversalSource.clone()  | 
GraphTraversalSource | 
GraphTraversalSource.Builder.create(Graph graph)
Deprecated. 
 
As of release 3.2.0. Please use  
Graph.traversal(Class). | 
GraphTraversalSource | 
GraphTraversalSource.withBindings(Bindings bindings)
Deprecated.  
 | 
GraphTraversalSource | 
GraphTraversalSource.withBulk(boolean useBulk)  | 
GraphTraversalSource | 
GraphTraversalSource.withComputer()  | 
GraphTraversalSource | 
GraphTraversalSource.withComputer(Class<? extends GraphComputer> graphComputerClass)  | 
GraphTraversalSource | 
GraphTraversalSource.withComputer(Computer computer)  | 
GraphTraversalSource | 
GraphTraversalSource.withoutStrategies(Class<? extends TraversalStrategy>... traversalStrategyClasses)  | 
GraphTraversalSource | 
GraphTraversalSource.withPath()  | 
GraphTraversalSource | 
GraphTraversalSource.withRemote(Configuration conf)  | 
<A> GraphTraversalSource | 
GraphTraversalSource.withSack(A initialValue)  | 
<A> GraphTraversalSource | 
GraphTraversalSource.withSack(A initialValue,
        BinaryOperator<A> mergeOperator)  | 
<A> GraphTraversalSource | 
GraphTraversalSource.withSack(A initialValue,
        UnaryOperator<A> splitOperator)  | 
<A> GraphTraversalSource | 
GraphTraversalSource.withSack(A initialValue,
        UnaryOperator<A> splitOperator,
        BinaryOperator<A> mergeOperator)  | 
<A> GraphTraversalSource | 
GraphTraversalSource.withSack(Supplier<A> initialValue)  | 
<A> GraphTraversalSource | 
GraphTraversalSource.withSack(Supplier<A> initialValue,
        BinaryOperator<A> mergeOperator)  | 
<A> GraphTraversalSource | 
GraphTraversalSource.withSack(Supplier<A> initialValue,
        UnaryOperator<A> splitOperator)  | 
<A> GraphTraversalSource | 
GraphTraversalSource.withSack(Supplier<A> initialValue,
        UnaryOperator<A> splitOperator,
        BinaryOperator<A> mergeOperator)  | 
<A> GraphTraversalSource | 
GraphTraversalSource.withSideEffect(String key,
              A initialValue)  | 
<A> GraphTraversalSource | 
GraphTraversalSource.withSideEffect(String key,
              A initialValue,
              BinaryOperator<A> reducer)  | 
<A> GraphTraversalSource | 
GraphTraversalSource.withSideEffect(String key,
              Supplier<A> initialValue)  | 
<A> GraphTraversalSource | 
GraphTraversalSource.withSideEffect(String key,
              Supplier<A> initialValue,
              BinaryOperator<A> reducer)  | 
GraphTraversalSource | 
GraphTraversalSource.withStrategies(TraversalStrategy... traversalStrategies)  | 
| Constructor and Description | 
|---|
DefaultGraphTraversal(GraphTraversalSource graphTraversalSource)  | 
| Modifier and Type | Method and Description | 
|---|---|
TraversalSource | 
ComputerTraversalEngine.Builder.create(GraphTraversalSource traversalSource)
Deprecated. 
 
As of release 3.2.0. Please use  
Graph.traversal(Class). | 
| Modifier and Type | Method and Description | 
|---|---|
static <S,E> Traversal.Admin<S,E> | 
TraversalScriptHelper.compute(String script,
       GraphTraversalSource g,
       Object... bindings)
Deprecated.  
 | 
| Modifier and Type | Method and Description | 
|---|---|
default GraphTraversalSource | 
Graph.traversal()
Generate a reusable  
GraphTraversalSource instance. | 
Copyright © 2013–2017 Apache Software Foundation. All rights reserved.