Uses of Class
org.apache.tinkerpop.gremlin.tinkergraph.structure.AbstractTinkerGraph
-
-
Uses of AbstractTinkerGraph in org.apache.tinkerpop.gremlin.tinkergraph.process.computer
Constructors in org.apache.tinkerpop.gremlin.tinkergraph.process.computer with parameters of type AbstractTinkerGraph Constructor Description TinkerGraphComputer(AbstractTinkerGraph graph)
TinkerGraphComputerView(AbstractTinkerGraph graph, GraphFilter graphFilter, Set<VertexComputeKey> computeKeys)
TinkerWorkerPool(AbstractTinkerGraph graph, TinkerMemory memory, int numberOfWorkers)
-
Uses of AbstractTinkerGraph in org.apache.tinkerpop.gremlin.tinkergraph.services
Fields in org.apache.tinkerpop.gremlin.tinkergraph.services declared as AbstractTinkerGraph Modifier and Type Field Description protected AbstractTinkerGraph
TinkerServiceRegistry.TinkerServiceFactory. graph
Constructors in org.apache.tinkerpop.gremlin.tinkergraph.services with parameters of type AbstractTinkerGraph Constructor Description LambdaServiceFactory(AbstractTinkerGraph graph, String name)
TinkerDegreeCentralityFactory(AbstractTinkerGraph graph)
TinkerServiceFactory(AbstractTinkerGraph graph, String name)
TinkerServiceRegistry(AbstractTinkerGraph graph)
TinkerTextSearchFactory(AbstractTinkerGraph graph)
-
Uses of AbstractTinkerGraph in org.apache.tinkerpop.gremlin.tinkergraph.structure
Subclasses of AbstractTinkerGraph in org.apache.tinkerpop.gremlin.tinkergraph.structure Modifier and Type Class Description class
TinkerGraph
An in-memory (with optional persistence on calls toclose()
), reference implementation of the property graph interfaces provided by TinkerPop.class
TinkerTransactionGraph
An in-memory (with optional persistence on calls toclose()
), reference implementation of the property graph interfaces with transaction support provided by TinkerPop.Fields in org.apache.tinkerpop.gremlin.tinkergraph.structure declared as AbstractTinkerGraph Modifier and Type Field Description protected AbstractTinkerGraph
AbstractTinkerIndex. graph
protected AbstractTinkerGraph
TinkerVertex. graph
Methods in org.apache.tinkerpop.gremlin.tinkergraph.structure with parameters of type AbstractTinkerGraph Modifier and Type Method Description static TinkerGraphComputerView
TinkerHelper. createGraphComputerView(AbstractTinkerGraph graph, GraphFilter graphFilter, Set<VertexComputeKey> computeKeys)
protected TinkerVertex
AbstractTinkerGraph. createTinkerVertex(Object id, String label, AbstractTinkerGraph graph)
protected TinkerVertex
AbstractTinkerGraph. createTinkerVertex(Object id, String label, AbstractTinkerGraph graph, long currentVersion)
static void
TinkerHelper. dropGraphComputerView(AbstractTinkerGraph graph)
static void
TinkerFactory. generateClassic(AbstractTinkerGraph g)
Generate the graph inTinkerFactory.createClassic()
into an existing graph.static void
TinkerFactory. generateGratefulDead(AbstractTinkerGraph graph)
Generate the graph inTinkerFactory.createGratefulDead()
into an existing graph.static void
TinkerFactory. generateKitchenSink(AbstractTinkerGraph graph)
Generate the graph inTinkerFactory.createKitchenSink()
into an existing graph.static void
TinkerFactory. generateModern(AbstractTinkerGraph g)
Generate the graph inTinkerFactory.createModern()
into an existing graph.static void
TinkerFactory. generateTheCrew(AbstractTinkerGraph g)
Generate the graph inTinkerFactory.createTheCrew()
into an existing graph.static TinkerGraphComputerView
TinkerHelper. getGraphComputerView(AbstractTinkerGraph graph)
T
AbstractTinkerGraph.IdManager. getNextId(AbstractTinkerGraph graph)
Generate an identifier which should be unique to theTinkerGraph
instance.static boolean
TinkerHelper. inComputerMode(AbstractTinkerGraph graph)
static List<TinkerEdge>
TinkerIndexHelper. queryEdgeIndex(AbstractTinkerGraph graph, String key, Object value)
static List<TinkerVertex>
TinkerIndexHelper. queryVertexIndex(AbstractTinkerGraph graph, String key, Object value)
static <E extends Element>
Iterator<Property>TinkerHelper. search(AbstractTinkerGraph graph, String regex, Optional<Class<E>> type)
Constructors in org.apache.tinkerpop.gremlin.tinkergraph.structure with parameters of type AbstractTinkerGraph Constructor Description AbstractTinkerIndex(AbstractTinkerGraph graph, Class<T> indexClass)
TinkerVertex(Object id, String label, AbstractTinkerGraph graph)
TinkerVertex(Object id, String label, AbstractTinkerGraph graph, long currentVersion)
-