Uses of Class
org.apache.tinkerpop.gremlin.tinkergraph.structure.TinkerGraph
-
-
Uses of TinkerGraph in org.apache.tinkerpop.gremlin.tinkergraph.process.computer
Constructors in org.apache.tinkerpop.gremlin.tinkergraph.process.computer with parameters of type TinkerGraph Constructor Description TinkerGraphComputer(TinkerGraph graph)TinkerGraphComputerView(TinkerGraph graph, GraphFilter graphFilter, Set<VertexComputeKey> computeKeys)TinkerWorkerPool(TinkerGraph graph, TinkerMemory memory, int numberOfWorkers) -
Uses of TinkerGraph in org.apache.tinkerpop.gremlin.tinkergraph.services
Fields in org.apache.tinkerpop.gremlin.tinkergraph.services declared as TinkerGraph Modifier and Type Field Description protected TinkerGraphTinkerServiceRegistry.TinkerServiceFactory. graphConstructors in org.apache.tinkerpop.gremlin.tinkergraph.services with parameters of type TinkerGraph Constructor Description LambdaServiceFactory(TinkerGraph graph, String name)TinkerDegreeCentralityFactory(TinkerGraph graph)TinkerServiceFactory(TinkerGraph graph, String name)TinkerServiceRegistry(TinkerGraph graph)TinkerTextSearchFactory(TinkerGraph graph) -
Uses of TinkerGraph in org.apache.tinkerpop.gremlin.tinkergraph.structure
Methods in org.apache.tinkerpop.gremlin.tinkergraph.structure that return TinkerGraph Modifier and Type Method Description static TinkerGraphTinkerFactory. createClassic()Create the "classic" graph which was the original toy graph from TinkerPop 2.x.static TinkerGraphTinkerFactory. createGratefulDead()Creates the "grateful dead" graph which is a larger graph than most of the toy graphs but has real-world structure and application and is therefore useful for demonstrating more complex traversals.static TinkerGraphTinkerFactory. createKitchenSink()Creates the "kitchen sink" graph which is a collection of structures (e.g.static TinkerGraphTinkerFactory. createModern()Create the "modern" graph which has the same structure as the "classic" graph from TinkerPop 2.x but includes 3.x features like vertex labels.static TinkerGraphTinkerFactory. createTheCrew()Create the "the crew" graph which is a TinkerPop 3.x toy graph showcasing many 3.x features like meta-properties, multi-properties and graph variables.static TinkerGraphTinkerGraph. open()Open a newTinkerGraphinstance.static TinkerGraphTinkerGraph. open(org.apache.commons.configuration2.Configuration configuration)Open a newTinkerGraphinstance.Methods in org.apache.tinkerpop.gremlin.tinkergraph.structure with parameters of type TinkerGraph Modifier and Type Method Description protected static EdgeTinkerHelper. addEdge(TinkerGraph graph, TinkerVertex outVertex, TinkerVertex inVertex, String label, Object... keyValues)static TinkerGraphComputerViewTinkerHelper. createGraphComputerView(TinkerGraph graph, GraphFilter graphFilter, Set<VertexComputeKey> computeKeys)static voidTinkerHelper. dropGraphComputerView(TinkerGraph graph)static voidTinkerFactory. generateClassic(TinkerGraph g)Generate the graph inTinkerFactory.createClassic()into an existing graph.static voidTinkerFactory. generateGratefulDead(TinkerGraph graph)Generate the graph inTinkerFactory.createGratefulDead()into an existing graph.static voidTinkerFactory. generateKitchenSink(TinkerGraph graph)Generate the graph inTinkerFactory.createKitchenSink()into an existing graph.static voidTinkerFactory. generateModern(TinkerGraph g)Generate the graph inTinkerFactory.createModern()into an existing graph.static voidTinkerFactory. generateTheCrew(TinkerGraph g)Generate the graph inTinkerFactory.createTheCrew()into an existing graph.static Map<Object,Edge>TinkerHelper. getEdges(TinkerGraph graph)static TinkerGraphComputerViewTinkerHelper. getGraphComputerView(TinkerGraph graph)TTinkerGraph.IdManager. getNextId(TinkerGraph graph)Generate an identifier which should be unique to theTinkerGraphinstance.static Map<Object,Vertex>TinkerHelper. getVertices(TinkerGraph graph)static booleanTinkerHelper. inComputerMode(TinkerGraph graph)static List<TinkerEdge>TinkerHelper. queryEdgeIndex(TinkerGraph graph, String key, Object value)static List<TinkerVertex>TinkerHelper. queryVertexIndex(TinkerGraph graph, String key, Object value)static Iterator<Property>TinkerHelper. search(TinkerGraph graph, String regex)static <E extends Element>
Iterator<Property>TinkerHelper. search(TinkerGraph graph, String regex, Optional<Class<E>> type)Constructors in org.apache.tinkerpop.gremlin.tinkergraph.structure with parameters of type TinkerGraph Constructor Description TinkerVertex(Object id, String label, TinkerGraph graph)
-