Modifier and Type | Field and Description |
---|---|
protected GraphTraversalSource |
AbstractGremlinTest.g |
Modifier and Type | Method and Description |
---|---|
GraphTraversalSource |
GraphManager.ManagedGraphProvider.traversal(Graph graph) |
default GraphTraversalSource |
GraphProvider.traversal(Graph graph)
Create a
GraphTraversalSource from a Graph instance. |
GraphTraversalSource |
GraphManager.ManagedGraphProvider.traversal(Graph graph,
TraversalStrategy... strategies) |
default GraphTraversalSource |
GraphProvider.traversal(Graph graph,
TraversalStrategy... strategies)
Create a
GraphTraversalSource from a Graph instance. |
Modifier and Type | Class and Description |
---|---|
class |
CredentialTraversalSourceDsl |
Modifier and Type | Method and Description |
---|---|
default Edge |
BulkLoader.createEdge(Edge edge,
Vertex outVertex,
Vertex inVertex,
Graph graph,
GraphTraversalSource g)
Deprecated.
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)
Deprecated.
Creates a clone of the given property for the given vertex.
|
Edge |
BulkLoader.getOrCreateEdge(Edge edge,
Vertex outVertex,
Vertex inVertex,
Graph graph,
GraphTraversalSource g)
Deprecated.
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)
Deprecated.
Gets or creates a clone of the given edge between the given in- and out-vertices.
|
Edge |
OneTimeBulkLoader.getOrCreateEdge(Edge edge,
Vertex outVertex,
Vertex inVertex,
Graph graph,
GraphTraversalSource g)
Deprecated.
Creates a clone of the given edge between the given in- and out-vertices.
|
Vertex |
BulkLoader.getOrCreateVertex(Vertex vertex,
Graph graph,
GraphTraversalSource g)
Deprecated.
Gets or creates a clone of the given vertex in the given graph.
|
Vertex |
IncrementalBulkLoader.getOrCreateVertex(Vertex vertex,
Graph graph,
GraphTraversalSource g)
Deprecated.
Gets or creates a clone of the given vertex in the given graph.
|
Vertex |
OneTimeBulkLoader.getOrCreateVertex(Vertex vertex,
Graph graph,
GraphTraversalSource g)
Deprecated.
Creates a clone of the given vertex in the given graph.
|
VertexProperty |
BulkLoader.getOrCreateVertexProperty(VertexProperty<?> property,
Vertex vertex,
Graph graph,
GraphTraversalSource g)
Deprecated.
Gets or creates a clone of the given property for the given vertex.
|
VertexProperty |
IncrementalBulkLoader.getOrCreateVertexProperty(VertexProperty<?> property,
Vertex vertex,
Graph graph,
GraphTraversalSource g)
Deprecated.
Gets or creates a clone of the given property for the given vertex.
|
VertexProperty |
OneTimeBulkLoader.getOrCreateVertexProperty(VertexProperty<?> property,
Vertex vertex,
Graph graph,
GraphTraversalSource g)
Deprecated.
Creates a clone of the given property for the given vertex.
|
Vertex |
BulkLoader.getVertex(Vertex vertex,
Graph graph,
GraphTraversalSource g)
Deprecated.
Get a vertex that matches the given vertex from the given graph.
|
Vertex |
IncrementalBulkLoader.getVertex(Vertex vertex,
Graph graph,
GraphTraversalSource g)
Deprecated.
Get a vertex that matches the given vertex from the given graph.
|
Vertex |
OneTimeBulkLoader.getVertex(Vertex vertex,
Graph graph,
GraphTraversalSource g)
Deprecated.
Get a vertex that matches the given vertex from the given graph.
|
default Vertex |
BulkLoader.getVertexById(Object id,
Graph graph,
GraphTraversalSource g)
Deprecated.
Gets a vertex by its ID from the given graph.
|
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
AnonymousTraversalSource which will then be configured to spawn a
GraphTraversalSource . |
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
GraphComputer of the graph that will be used to execute the traversal. |
GraphTraversalSource |
GraphTraversalSource.withComputer(Class<? extends GraphComputer> graphComputerClass)
Add a
GraphComputer class used to execute the traversal. |
GraphTraversalSource |
GraphTraversalSource.withComputer(Computer computer)
Add a
Computer that will generate a GraphComputer from the Graph that will be used to execute the traversal. |
GraphTraversalSource |
GraphTraversalSource.withoutStrategies(Class<? extends TraversalStrategy>... traversalStrategyClasses)
Remove an arbitrary collection of
TraversalStrategy classes from the traversal source. |
GraphTraversalSource |
GraphTraversalSource.withPath() |
GraphTraversalSource |
GraphTraversalSource.withRemote(Configuration conf)
Deprecated.
As of release 3.3.5, replaced by
AnonymousTraversalSource.withRemote(Configuration) . |
<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
TraversalStrategy instances to the traversal source. |
Constructor and Description |
---|
DefaultGraphTraversal(GraphTraversalSource graphTraversalSource) |
Modifier and Type | Method and Description |
---|---|
default GraphTraversalSource |
Graph.traversal()
Generate a reusable
GraphTraversalSource instance. |
Copyright © 2013–2021 Apache Software Foundation. All rights reserved.