| Modifier and Type | Method and Description |
|---|---|
static StrategyGraph |
ComputerDataStrategy.wrapGraph(Graph graph,
VertexProgram<?> vertexProgram) |
| Modifier and Type | Method and Description |
|---|---|
default StrategyGraph |
Graph.strategy(GraphStrategy... strategies)
Constructs a
StrategyGraph from one or more GraphStrategy objects. |
| Modifier and Type | Field and Description |
|---|---|
protected StrategyGraph |
StrategyVariables.strategyGraph |
protected StrategyGraph |
StrategyElement.strategyGraph |
| Modifier and Type | Method and Description |
|---|---|
StrategyGraph |
StrategyContext.getStrategyGraph()
Gets the current
StrategyGraph instance. |
| Modifier and Type | Method and Description |
|---|---|
java.util.function.UnaryOperator<java.util.function.Function<java.lang.Object[],Vertex>> |
SequenceStrategy.getAddVertexStrategy(StrategyContext<StrategyGraph> ctx,
GraphStrategy composingStrategy) |
java.util.function.UnaryOperator<java.util.function.Function<java.lang.Object[],Vertex>> |
ReadOnlyStrategy.getAddVertexStrategy(StrategyContext<StrategyGraph> ctx,
GraphStrategy composingStrategy) |
java.util.function.UnaryOperator<java.util.function.Function<java.lang.Object[],Vertex>> |
PartitionStrategy.getAddVertexStrategy(StrategyContext<StrategyGraph> ctx,
GraphStrategy composingStrategy) |
java.util.function.UnaryOperator<java.util.function.Function<java.lang.Object[],Vertex>> |
IdStrategy.getAddVertexStrategy(StrategyContext<StrategyGraph> ctx,
GraphStrategy composingStrategy) |
default java.util.function.UnaryOperator<java.util.function.Function<java.lang.Object[],Vertex>> |
GraphStrategy.getAddVertexStrategy(StrategyContext<StrategyGraph> ctx,
GraphStrategy composingStrategy)
Construct a
Function that enhances the features of Graph.addVertex(Object...). |
java.util.function.UnaryOperator<java.util.function.Supplier<java.lang.Void>> |
SequenceStrategy.getGraphCloseStrategy(StrategyContext<StrategyGraph> ctx,
GraphStrategy composingStrategy) |
default java.util.function.UnaryOperator<java.util.function.Supplier<java.lang.Void>> |
GraphStrategy.getGraphCloseStrategy(StrategyContext<StrategyGraph> ctx,
GraphStrategy composingStrategy)
Construct a
Supplier that enhances the features of AutoCloseable.close(). |
java.util.function.UnaryOperator<java.util.function.Function<java.lang.Object[],GraphTraversal<Edge,Edge>>> |
SubgraphStrategy.getGraphEStrategy(StrategyContext<StrategyGraph> ctx,
GraphStrategy composingStrategy) |
java.util.function.UnaryOperator<java.util.function.Function<java.lang.Object[],GraphTraversal<Edge,Edge>>> |
SequenceStrategy.getGraphEStrategy(StrategyContext<StrategyGraph> ctx,
GraphStrategy composingStrategy) |
java.util.function.UnaryOperator<java.util.function.Function<java.lang.Object[],GraphTraversal<Edge,Edge>>> |
PartitionStrategy.getGraphEStrategy(StrategyContext<StrategyGraph> ctx,
GraphStrategy composingStrategy) |
java.util.function.UnaryOperator<java.util.function.Function<java.lang.Object[],GraphTraversal<Edge,Edge>>> |
IdStrategy.getGraphEStrategy(StrategyContext<StrategyGraph> ctx,
GraphStrategy composingStrategy) |
default java.util.function.UnaryOperator<java.util.function.Function<java.lang.Object[],GraphTraversal<Edge,Edge>>> |
GraphStrategy.getGraphEStrategy(StrategyContext<StrategyGraph> ctx,
GraphStrategy composingStrategy)
Construct a
Function that enhances the features of Graph.E(java.lang.Object...). |
java.util.function.UnaryOperator<java.util.function.Function<java.lang.Object[],java.util.Iterator<Edge>>> |
SequenceStrategy.getGraphIteratorsEdgeIteratorStrategy(StrategyContext<StrategyGraph> ctx,
GraphStrategy composingStrategy) |
java.util.function.UnaryOperator<java.util.function.Function<java.lang.Object[],java.util.Iterator<Edge>>> |
IdStrategy.getGraphIteratorsEdgeIteratorStrategy(StrategyContext<StrategyGraph> ctx,
GraphStrategy composingStrategy) |
default java.util.function.UnaryOperator<java.util.function.Function<java.lang.Object[],java.util.Iterator<Edge>>> |
GraphStrategy.getGraphIteratorsEdgeIteratorStrategy(StrategyContext<StrategyGraph> ctx,
GraphStrategy composingStrategy)
Construct a
Function that enhances the features of Graph.Iterators.edgeIterator(java.lang.Object...). |
java.util.function.UnaryOperator<java.util.function.Function<java.lang.Object[],java.util.Iterator<Vertex>>> |
SequenceStrategy.getGraphIteratorsVertexIteratorStrategy(StrategyContext<StrategyGraph> ctx,
GraphStrategy composingStrategy) |
java.util.function.UnaryOperator<java.util.function.Function<java.lang.Object[],java.util.Iterator<Vertex>>> |
IdStrategy.getGraphIteratorsVertexIteratorStrategy(StrategyContext<StrategyGraph> ctx,
GraphStrategy composingStrategy) |
default java.util.function.UnaryOperator<java.util.function.Function<java.lang.Object[],java.util.Iterator<Vertex>>> |
GraphStrategy.getGraphIteratorsVertexIteratorStrategy(StrategyContext<StrategyGraph> ctx,
GraphStrategy composingStrategy)
Construct a
Function that enhances the features of Graph.Iterators.vertexIterator(java.lang.Object...). |
java.util.function.UnaryOperator<java.util.function.Function<java.lang.Object[],GraphTraversal<Vertex,Vertex>>> |
SubgraphStrategy.getGraphVStrategy(StrategyContext<StrategyGraph> ctx,
GraphStrategy composingStrategy) |
java.util.function.UnaryOperator<java.util.function.Function<java.lang.Object[],GraphTraversal<Vertex,Vertex>>> |
SequenceStrategy.getGraphVStrategy(StrategyContext<StrategyGraph> ctx,
GraphStrategy composingStrategy) |
java.util.function.UnaryOperator<java.util.function.Function<java.lang.Object[],GraphTraversal<Vertex,Vertex>>> |
PartitionStrategy.getGraphVStrategy(StrategyContext<StrategyGraph> ctx,
GraphStrategy composingStrategy) |
java.util.function.UnaryOperator<java.util.function.Function<java.lang.Object[],GraphTraversal<Vertex,Vertex>>> |
IdStrategy.getGraphVStrategy(StrategyContext<StrategyGraph> ctx,
GraphStrategy composingStrategy) |
default java.util.function.UnaryOperator<java.util.function.Function<java.lang.Object[],GraphTraversal<Vertex,Vertex>>> |
GraphStrategy.getGraphVStrategy(StrategyContext<StrategyGraph> ctx,
GraphStrategy composingStrategy)
Construct a
Function that enhances the features of Graph.V(java.lang.Object...). |
| Constructor and Description |
|---|
StrategyContext(StrategyGraph g,
T current) |
StrategyEdge(Edge baseEdge,
StrategyGraph strategyGraph) |
StrategyEdgeIterator(java.util.Iterator<Edge> itty,
StrategyGraph strategyGraph) |
StrategyElement(Element baseElement,
StrategyGraph strategyGraph) |
StrategyProperty(Property<V> baseProperty,
StrategyGraph strategyGraph) |
StrategyVariables(Graph.Variables variables,
StrategyGraph strategyGraph) |
StrategyVertex(Vertex baseVertex,
StrategyGraph strategyGraph) |
StrategyVertexIterator(java.util.Iterator<Vertex> iterator,
StrategyGraph strategyGraph) |
StrategyVertexProperty(VertexProperty<V> baseVertexProperty,
StrategyGraph strategyGraph) |
| Constructor and Description |
|---|
StrategyGraphStep(Traversal traversal,
StrategyGraph strategyGraph,
java.lang.Class<E> returnClass,
GraphTraversal<?,E> graphTraversal) |
Copyright © 2013-2015 TinkerPop. All Rights Reserved.