| Interface | Description |
|---|---|
| FilterPipe<S> |
A FilterPipe has no specified behavior save that it takes the same objects it emits.
|
| Class | Description |
|---|---|
| AndFilterPipe<S> |
The AndFilterPipe takes a collection of pipes.
|
| BackFilterPipe<S> |
BackFilterPipe will fully process the object through its internal pipe.
|
| CollectionFilterPipe<S> |
A CollectionFilterPipe will take a collection of objects and a Filter.NOT_EQUAL or Filter.EQUAL argument.
|
| CyclicPathFilterPipe<S> |
CyclicPathFilterPipe will only emit an object if its transformation path has no repeats (loops) in it.
|
| DuplicateFilterPipe<S> |
The DuplicateFilterPipe will not allow a duplicate object to pass through it.
|
| ExceptFilterPipe<S> |
ExceptFilterPipe extends CollectionFilterPipe by assuming Compare.NOT_EQUAL and thus, "except/disjoint-union"-semantics.
|
| FilterFunctionPipe<S> |
FilterFunctionPipe is a generic filter pipe.
|
| FutureFilterPipe<S> |
FutureFilterPipe will allow an object to pass through it if the object has an output from the pipe provided in the constructor of the FutureFilterPipe.
|
| IdFilterPipe | |
| IntervalFilterPipe<S extends com.tinkerpop.blueprints.Element> |
IntervalFilterPipe will filter an element flowing through it according to whether a particular property value of the element is within provided range.
|
| LabelFilterPipe |
The LabelFilterPipe either allows or disallows all Edges that have the provided label.
|
| ObjectFilterPipe<S> |
The ObjectFilterPipe will either allow or disallow all objects that pass through it depending on the result of the compareObject() method.
|
| OrFilterPipe<S> |
The OrFilterPipe takes a collection of pipes that are wrapped in HasNextPipes.
|
| PropertyFilterPipe<S extends com.tinkerpop.blueprints.Element,T> |
The PropertyFilterPipe either allows or disallows all Elements that have the provided value for a particular key.
|
| RandomFilterPipe<S> |
The RandomFilterPipe filters out objects that pass through it using a biased coin.
|
| RangeFilterPipe<S> |
The RangeFilterPipe will only allow a sequential subset of its incoming objects to be emitted to its output.
|
| RetainFilterPipe<S> |
RetainFilterPipe extends CollectionFilterPipe by assuming Compare.EQUAL and thus, "retain/intersect"-semantics.
|
Copyright © 2010-2014. All Rights Reserved.