| Package | Description |
|---|---|
| com.tinkerpop.pipes.filter |
| Modifier and Type | Class and Description |
|---|---|
class |
AndFilterPipe<S>
The AndFilterPipe takes a collection of pipes.
|
class |
BackFilterPipe<S>
BackFilterPipe will fully process the object through its internal pipe.
|
class |
CollectionFilterPipe<S>
A CollectionFilterPipe will take a collection of objects and a Filter.NOT_EQUAL or Filter.EQUAL argument.
|
class |
CyclicPathFilterPipe<S>
CyclicPathFilterPipe will only emit an object if its transformation path has no repeats (loops) in it.
|
class |
DuplicateFilterPipe<S>
The DuplicateFilterPipe will not allow a duplicate object to pass through it.
|
class |
ExceptFilterPipe<S>
ExceptFilterPipe extends CollectionFilterPipe by assuming Compare.NOT_EQUAL and thus, "except/disjoint-union"-semantics.
|
class |
FilterFunctionPipe<S>
FilterFunctionPipe is a generic filter pipe.
|
class |
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.
|
class |
IdFilterPipe |
class |
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.
|
class |
LabelFilterPipe
The LabelFilterPipe either allows or disallows all Edges that have the provided label.
|
class |
ObjectFilterPipe<S>
The ObjectFilterPipe will either allow or disallow all objects that pass through it depending on the result of the compareObject() method.
|
class |
OrFilterPipe<S>
The OrFilterPipe takes a collection of pipes that are wrapped in HasNextPipes.
|
class |
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.
|
class |
RandomFilterPipe<S>
The RandomFilterPipe filters out objects that pass through it using a biased coin.
|
class |
RangeFilterPipe<S>
The RangeFilterPipe will only allow a sequential subset of its incoming objects to be emitted to its output.
|
class |
RetainFilterPipe<S>
RetainFilterPipe extends CollectionFilterPipe by assuming Compare.EQUAL and thus, "retain/intersect"-semantics.
|
Copyright © 2010-2014. All Rights Reserved.