Uses of Interface
org.apache.tinkerpop.gremlin.GraphProvider
-
Packages that use GraphProvider Package Description org.apache.tinkerpop.gremlin -
-
Uses of GraphProvider in org.apache.tinkerpop.gremlin
Classes in org.apache.tinkerpop.gremlin that implement GraphProvider Modifier and Type Class Description class
AbstractFileGraphProvider
A baseGraphProvider
that is typically for use with Hadoop-based graphs as it enables access to the various resource data files that are used in the tests.class
AbstractGraphProvider
A basic GraphProvider which simply requires the implementer to supply their base configuration for their Graph instance.static class
GraphManager.ManagedGraphProvider
This class provides a way to intercepts calls toGraph
implementation'sGraphProvider
instances.Fields in org.apache.tinkerpop.gremlin declared as GraphProvider Modifier and Type Field Description protected GraphProvider
AbstractGremlinTest. graphProvider
Methods in org.apache.tinkerpop.gremlin that return GraphProvider Modifier and Type Method Description static GraphProvider
GraphManager. getGraphProvider()
Gets theGraphProvider
from the current test suite and wraps it in aGraphManager.ManagedGraphProvider
.static GraphProvider
GraphManager. setGraphProvider(GraphProvider graphProvider)
Methods in org.apache.tinkerpop.gremlin that return types with arguments of type GraphProvider Modifier and Type Method Description static org.javatuples.Pair<Class<? extends GraphProvider>,Class<? extends Graph>>
AbstractGremlinSuite. getGraphProviderClass(Class<?> klass)
Class<? extends GraphProvider>
provider()
The class of theGraphProvider
implementation to use to generate theGraph
specified byGraphProviderClass.graph()
Methods in org.apache.tinkerpop.gremlin with parameters of type GraphProvider Modifier and Type Method Description static GraphProvider
GraphManager. setGraphProvider(GraphProvider graphProvider)
Constructors in org.apache.tinkerpop.gremlin with parameters of type GraphProvider Constructor Description ManagedGraphProvider(GraphProvider innerGraphProvider)
-