| Interface | Description |
|---|---|
| TransformPipe<S,E> |
A TransformPipe will take an object of one type and transform it to an object of another type.
|
| Class | Description |
|---|---|
| BothEdgesPipe |
BothEdgesPipe emits both the outgoing and incoming edges of a vertex.
|
| BothPipe |
BothPipe will emit those vertices adjacent to the incoming and outgoing edges of the incoming vertex.
|
| BothVerticesPipe |
BothVerticesPipe emits both vertices connected the the edge.
|
| EdgesVerticesPipe | |
| GatherFunctionPipe<S,E> |
GatherFunctionPipe emits all the objects up to this step as an ArrayList.
|
| GatherPipe<S> |
GatherPipe emits all the objects up to this step as an ArrayList.
|
| GraphQueryPipe<E extends com.tinkerpop.blueprints.Element> |
GraphQueryPipe makes use of the Graph.query() method in Blueprints which allows for intelligent element look ups from the underlying graph.
|
| HasCountPipe<S> | |
| HasNextPipe<S> | |
| IdEdgePipe<S> | |
| IdPipe |
IdPipe emits the id of the element.
|
| IdVertexPipe<S> | |
| IndexElementsPipe<E extends com.tinkerpop.blueprints.Element> | |
| InEdgesPipe | |
| InPipe |
InPipe will emit vertices that are the head/target of the incoming edges to the current vertex.
|
| InVertexPipe |
InVertexPipe emits the incoming/target/head vertex of an edge.
|
| LabelPipe |
LabelPipe emits the label of an edge.
|
| MemoizePipe<S,E> | |
| OrderMapPipe<S> | |
| OrderPipe<S> |
OrderPipe supports in-stream sorting of objects.
|
| OutEdgesPipe |
OutEdgesPipe emits the outgoing edges of a vertex.
|
| OutPipe |
OutPipe will emit vertices that are the tail/source of the outgoing edges to the current vertex.
|
| OutVertexPipe |
OutVertexPipe emits the outgoing/source/tail vertex of an edge.
|
| PathPipe<S> |
PathPipe emits the path that the traverser has taken up to this object.
|
| PropertyMapPipe<S extends com.tinkerpop.blueprints.Element> |
PropertyMapPipe emits the property map of an element.
|
| PropertyPipe<S extends com.tinkerpop.blueprints.Element,E> |
The PropertyPipe returns the property value of the Element identified by the provided key.
|
| QueryPipe<S,E extends com.tinkerpop.blueprints.Element> |
QueryPipe consolidates the fields and methods required for both VertexQueryPipe and GraphQueryPipe.
|
| QueryPipe.HasContainer | |
| QueryPipe.IntervalContainer | |
| ScatterPipe<S,E> |
ScatterPipe will unroll any iterator/iterable/map that is provided to it.
|
| SelectPipe<S> |
SelectPipe will emit a List of the objects that are at the respective 'as'-steps (i.e.
|
| ShufflePipe<S> |
The ShufflePipe emits all the objects up to this step as an ArrayList then randomizes the order of the items
in the list.
|
| SideEffectCapPipe<S,T> |
The SideEffectCapPipe will yield an E that is the side effect of the provided SideEffectPipe.
|
| ToStringPipe<S> |
ToStringPipe turns an stream of objects into their Object.toString() representation.
|
| TransformFunctionPipe<S,E> |
TransformFunctionPipe computes a transformation on the S object, where the PipeFunction determines the E.
|
| VertexQueryPipe<E extends com.tinkerpop.blueprints.Element> |
VertexQueryPipe makes use of the Vertex.query() method in Blueprints which allows for intelligent edge look ups from the underlying graph.
|
| VerticesEdgesPipe | |
| VerticesVerticesPipe |
| Enum | Description |
|---|---|
| TransformPipe.Order |
Copyright © 2010-2014. All Rights Reserved.