Class AnonymousTraversalSource<T extends TraversalSource>
- java.lang.Object
-
- org.apache.tinkerpop.gremlin.process.traversal.AnonymousTraversalSource<T>
-
public class AnonymousTraversalSource<T extends TraversalSource> extends Object
Provides a unified way to construct aTraversalSource
from the perspective of the traversal. In this syntax the user is creating the source and binding it to a reference which is either an existingGraph
instance or aRemoteConnection
.- Author:
- Stephen Mallette (http://stephen.genoprime.com)
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static AnonymousTraversalSource<GraphTraversalSource>
traversal()
Constructs anAnonymousTraversalSource
which will then be configured to spawn aGraphTraversalSource
.static <T extends TraversalSource>
AnonymousTraversalSource<T>traversal(Class<T> traversalSourceClass)
Constructs anAnonymousTraversalSource
which will then be configured to spawn the specifiedTraversalSource
.T
withEmbedded(Graph graph)
Creates the specifiedTraversalSource
binding an embeddedGraph
as its reference such that traversals spawned from it will execute over that reference.T
withGraph(Graph graph)
Deprecated.As of release 3.4.9, replaced bywithEmbedded(Graph)
T
withRemote(String configFile)
Creates aTraversalSource
binding aRemoteConnection
to a remoteGraph
instances as its reference so that traversals spawned from it will execute over that reference.T
withRemote(org.apache.commons.configuration2.Configuration conf)
Creates aTraversalSource
binding aRemoteConnection
to a remoteGraph
instances as its reference so that traversals spawned from it will execute over that reference.T
withRemote(RemoteConnection remoteConnection)
Creates aTraversalSource
binding aRemoteConnection
to a remoteGraph
instances as its reference so that traversals spawned from it will execute over that reference.
-
-
-
Method Detail
-
traversal
public static AnonymousTraversalSource<GraphTraversalSource> traversal()
Constructs anAnonymousTraversalSource
which will then be configured to spawn aGraphTraversalSource
.
-
traversal
public static <T extends TraversalSource> AnonymousTraversalSource<T> traversal(Class<T> traversalSourceClass)
Constructs anAnonymousTraversalSource
which will then be configured to spawn the specifiedTraversalSource
.
-
withRemote
public T withRemote(String configFile) throws Exception
Creates aTraversalSource
binding aRemoteConnection
to a remoteGraph
instances as its reference so that traversals spawned from it will execute over that reference.- Parameters:
configFile
- a path to a file that would normally be provided to configure aRemoteConnection
- Throws:
Exception
-
withRemote
public T withRemote(org.apache.commons.configuration2.Configuration conf)
Creates aTraversalSource
binding aRemoteConnection
to a remoteGraph
instances as its reference so that traversals spawned from it will execute over that reference.- Parameters:
conf
- aConfiguration
object that would normally be provided to configure aRemoteConnection
-
withRemote
public T withRemote(RemoteConnection remoteConnection)
Creates aTraversalSource
binding aRemoteConnection
to a remoteGraph
instances as its reference so that traversals spawned from it will execute over that reference.
-
withGraph
@Deprecated public T withGraph(Graph graph)
Deprecated.As of release 3.4.9, replaced bywithEmbedded(Graph)
Creates the specifiedTraversalSource
binding an embeddedGraph
as its reference such that traversals spawned from it will execute over that reference.
-
withEmbedded
public T withEmbedded(Graph graph)
Creates the specifiedTraversalSource
binding an embeddedGraph
as its reference such that traversals spawned from it will execute over that reference.
-
-