Uses of Interface
org.apache.tinkerpop.gremlin.structure.Graph
Packages that use Graph
Package
Description
-
Uses of Graph in org.apache.tinkerpop.gremlin.process.computer
Methods in org.apache.tinkerpop.gremlin.process.computer that return GraphMethods in org.apache.tinkerpop.gremlin.process.computer with parameters of type GraphModifier and TypeMethodDescription<P extends VertexProgram>
Pstatic <M extends MapReduce>
MMapReduce.createMapReduce(Graph graph, org.apache.commons.configuration2.Configuration configuration) A helper method to construct aMapReducegiven the content of the supplied configuration.static <V extends VertexProgram>
VVertexProgram.createVertexProgram(Graph graph, org.apache.commons.configuration2.Configuration configuration) A helper method to construct aVertexProgramgiven the content of the supplied configuration.default voidWhen it is necessary to load the state of a MapReduce job, this method is called.default voidWhen it is necessary to load the state of the VertexProgram, this method is called. -
Uses of Graph in org.apache.tinkerpop.gremlin.process.computer.clustering.connected
Methods in org.apache.tinkerpop.gremlin.process.computer.clustering.connected with parameters of type Graph -
Uses of Graph in org.apache.tinkerpop.gremlin.process.computer.clustering.peerpressure
Methods in org.apache.tinkerpop.gremlin.process.computer.clustering.peerpressure with parameters of type Graph -
Uses of Graph in org.apache.tinkerpop.gremlin.process.computer.ranking.pagerank
Methods in org.apache.tinkerpop.gremlin.process.computer.ranking.pagerank with parameters of type Graph -
Uses of Graph in org.apache.tinkerpop.gremlin.process.computer.search.path
Methods in org.apache.tinkerpop.gremlin.process.computer.search.path with parameters of type Graph -
Uses of Graph in org.apache.tinkerpop.gremlin.process.computer.traversal
Methods in org.apache.tinkerpop.gremlin.process.computer.traversal with parameters of type Graph -
Uses of Graph in org.apache.tinkerpop.gremlin.process.traversal
Methods in org.apache.tinkerpop.gremlin.process.traversal that return GraphModifier and TypeMethodDescriptionTraversalSource.getGraph()Get theGraphassociated with this traversal source.Methods in org.apache.tinkerpop.gremlin.process.traversal that return types with arguments of type GraphMethods in org.apache.tinkerpop.gremlin.process.traversal with parameters of type GraphModifier and TypeMethodDescriptionvoidCreates the specifiedTraversalSourcebinding an embeddedGraphas its reference such that traversals spawned from it will execute over that reference.AnonymousTraversalSource.withEmbedded(Graph graph) Deprecated. -
Uses of Graph in org.apache.tinkerpop.gremlin.process.traversal.dsl.graph
Fields in org.apache.tinkerpop.gremlin.process.traversal.dsl.graph declared as GraphMethods in org.apache.tinkerpop.gremlin.process.traversal.dsl.graph that return GraphConstructors in org.apache.tinkerpop.gremlin.process.traversal.dsl.graph with parameters of type GraphModifierConstructorDescriptionGraphTraversalSource(Graph graph) GraphTraversalSource(Graph graph, TraversalStrategies traversalStrategies) -
Uses of Graph in org.apache.tinkerpop.gremlin.structure
Methods in org.apache.tinkerpop.gremlin.structure with type parameters of type GraphModifier and TypeMethodDescriptiondefault <G extends Graph>
GTransaction.createThreadedTx()Creates a transaction that can be executed across multiple threads.Methods in org.apache.tinkerpop.gremlin.structure that return Graph -
Uses of Graph in org.apache.tinkerpop.gremlin.structure.io
Methods in org.apache.tinkerpop.gremlin.structure.io with parameters of type GraphModifier and TypeMethodDescriptionIo.Builder<? extends Io>Providers use this method to supply the current instance of theirGraphto the builder.static voidGraphMigrator.migrateGraph(Graph fromGraph, Graph toGraph) Use Gryo to pipe the data from one graph to another graph.static voidGraphMigrator.migrateGraph(Graph fromGraph, Graph toGraph, GraphReader reader, GraphWriter writer) Pipe the data from one graph to another graph.voidGraphReader.readGraph(InputStream inputStream, Graph graphToWriteTo) Reads an entire graph from anInputStream.voidGraphWriter.writeGraph(OutputStream outputStream, Graph g) Write the entire graph to a stream. -
Uses of Graph in org.apache.tinkerpop.gremlin.structure.io.graphml
Methods in org.apache.tinkerpop.gremlin.structure.io.graphml with parameters of type GraphModifier and TypeMethodDescriptionvoidGraphMLReader.readGraph(InputStream graphInputStream, Graph graphToWriteTo) voidGraphMLWriter.writeGraph(OutputStream outputStream, Graph g) Write the data in a Graph to a GraphML OutputStream. -
Uses of Graph in org.apache.tinkerpop.gremlin.structure.io.graphson
Methods in org.apache.tinkerpop.gremlin.structure.io.graphson with parameters of type GraphModifier and TypeMethodDescriptionvoidGraphSONReader.readGraph(InputStream inputStream, Graph graphToWriteTo) Read data into aGraphfrom output generated by any of theGraphSONWriterwriteVertexorwriteVerticesmethods or byGryoWriter.writeGraph(OutputStream, Graph).voidGraphSONWriter.writeGraph(OutputStream outputStream, Graph g) Writes aGraphto stream in an adjacency list format where vertices are written with edges from both directions. -
Uses of Graph in org.apache.tinkerpop.gremlin.structure.io.gryo
Methods in org.apache.tinkerpop.gremlin.structure.io.gryo with parameters of type GraphModifier and TypeMethodDescriptionvoidGryoReader.readGraph(InputStream inputStream, Graph graphToWriteTo) Read data into aGraphfrom output generated by any of theGryoWriterwriteVertexorwriteVerticesmethods or byGryoWriter.writeGraph(OutputStream, Graph).voidGryoWriter.writeGraph(OutputStream outputStream, Graph g) Write the entire graph to a stream.
AnonymousTraversalSource.with(Graph)