| Package | Description |
|---|---|
| com.tinkerpop.pipes.util |
| Modifier and Type | Class and Description |
|---|---|
class |
PipesPipeline<S,E>
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
PipesFluentPipeline<S,E> |
PipesFluentPipeline._()
Deprecated.
Add an IdentityPipe to the end of the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.aggregate()
Deprecated.
Add an AggregatePipe to the end of the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.aggregate(Collection<E> aggregate)
Deprecated.
Add an AggregatePipe to the end of the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.aggregate(Collection aggregate,
PipeFunction<E,?> aggregateFunction)
Deprecated.
Add an AggregatePipe to the end of the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.aggregate(PipeFunction<E,?> aggregateFunction)
Deprecated.
Add an AggregatePipe to the end of the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.and(Pipe<E,?>... pipes)
Deprecated.
Add an AndFilterPipe to the end the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.as(String name)
Deprecated.
Wrap the previous step in an AsPipe.
|
PipesFluentPipeline<S,?> |
PipesFluentPipeline.back(int numberedStep)
Deprecated.
Add a BackFilterPipe to the end of the Pipeline.
|
PipesFluentPipeline<S,?> |
PipesFluentPipeline.back(String namedStep)
Deprecated.
Add a BackFilterPipe to the end of the Pipeline.
|
PipesFluentPipeline<S,?> |
PipesFluentPipeline.cap()
Deprecated.
Add a SideEffectCapPipe to the end of the Pipeline.
|
<E> PipesFluentPipeline<S,E> |
PipesFluentPipeline.cast(Class<E> end)
Deprecated.
Returns the current pipeline with a new end type.
|
PipesFluentPipeline<S,?> |
PipesFluentPipeline.copySplit(Pipe<E,?>... pipes)
Deprecated.
Add a CopySplitPipe to the end of the pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.dedup()
Deprecated.
Add a DuplicateFilterPipe to the end of the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.dedup(PipeFunction<E,?> dedupFunction)
Deprecated.
Add a DuplicateFilterPipe to the end of the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesPipeline.enablePath()
Deprecated.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.enablePath()
Deprecated.
Enable path calculations in the pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.except(Collection<E> collection)
Deprecated.
Add an ExceptFilterPipe to the end of the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.except(String... namedSteps)
Deprecated.
Add an ExceptFilterPipe to the end of the Pipeline.
|
PipesFluentPipeline<S,?> |
PipesFluentPipeline.exhaustMerge()
Deprecated.
Add an ExhaustMergePipe to the end of the pipeline.
|
PipesFluentPipeline<S,?> |
PipesFluentPipeline.fairMerge()
Deprecated.
Add a FairMergePipe to the end of the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.filter(PipeFunction<E,Boolean> filterFunction)
Deprecated.
Add an FilterFunctionPipe to the end of the Pipeline.
|
PipesFluentPipeline<S,List> |
PipesFluentPipeline.gather()
Deprecated.
Add a GatherPipe to the end of the Pipeline.
|
PipesFluentPipeline<S,?> |
PipesFluentPipeline.gather(PipeFunction<List,?> function)
Deprecated.
Add a GatherPipe to the end of the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.groupBy(Map<?,List<?>> map,
PipeFunction keyFunction,
PipeFunction valueFunction)
Deprecated.
Add a GroupByPipe to the end of the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.groupBy(Map reduceMap,
PipeFunction keyFunction,
PipeFunction valueFunction,
PipeFunction reduceFunction)
Deprecated.
Add a GroupByReducePipe to the end of the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.groupBy(PipeFunction keyFunction,
PipeFunction valueFunction)
Deprecated.
Add a GroupByPipe to the end of the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.groupBy(PipeFunction keyFunction,
PipeFunction valueFunction,
PipeFunction reduceFunction)
Deprecated.
Add a GroupByReducePipe to the end of the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.groupCount()
Deprecated.
Add a GroupCountPipe to the end of the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.groupCount(Map<?,Number> map)
Deprecated.
Add a GroupCountPipe to the end of the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.groupCount(Map<?,Number> map,
PipeFunction keyFunction)
Deprecated.
Add a GroupCountPipe or GroupCountFunctionPipe to the end of the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.groupCount(Map<?,Number> map,
PipeFunction keyFunction,
PipeFunction<Pair<?,Number>,Number> valueFunction)
Deprecated.
Add a GroupCountPipe or GroupCountFunctionPipe to the end of the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.groupCount(PipeFunction keyFunction)
Deprecated.
Add a GroupCountPipe or GroupCountFunctionPipe to the end of the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.groupCount(PipeFunction keyFunction,
PipeFunction<Pair<?,Number>,Number> valueFunction)
Deprecated.
Add a GroupCountPipe or GroupCountFunctionPipe to the end of the Pipeline.
|
PipesFluentPipeline<S,?> |
PipesFluentPipeline.ifThenElse(PipeFunction<E,Boolean> ifFunction,
PipeFunction<E,?> thenFunction,
PipeFunction<E,?> elseFunction)
Deprecated.
Add an IfThenElsePipe to the end of the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.loop(int numberedStep,
PipeFunction<LoopPipe.LoopBundle<E>,Boolean> whileFunction)
Deprecated.
Add a LoopPipe to the end of the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.loop(int numberedStep,
PipeFunction<LoopPipe.LoopBundle<E>,Boolean> whileFunction,
PipeFunction<LoopPipe.LoopBundle<E>,Boolean> emitFunction)
Deprecated.
Add a LoopPipe to the end of the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.loop(String namedStep,
PipeFunction<LoopPipe.LoopBundle<E>,Boolean> whileFunction)
Deprecated.
Add a LoopPipe to the end of the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.loop(String namedStep,
PipeFunction<LoopPipe.LoopBundle<E>,Boolean> whileFunction,
PipeFunction<LoopPipe.LoopBundle<E>,Boolean> emitFunction)
Deprecated.
Add a LoopPipe to the end of the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.memoize(int numberedStep)
Deprecated.
Add a MemoizePipe to the end of the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.memoize(int numberedStep,
Map map)
Deprecated.
Add a MemoizePipe to the end of the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.memoize(String namedStep)
Deprecated.
Add a MemoizePipe to the end of the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.memoize(String namedStep,
Map map)
Deprecated.
Add a MemoizePipe to the end of the Pipeline.
|
PipesFluentPipeline<S,?> |
PipesFluentPipeline.optional(int numberedStep)
Deprecated.
Add an OptionalPipe to the end of the Pipeline.
|
PipesFluentPipeline<S,?> |
PipesFluentPipeline.optional(String namedStep)
Deprecated.
Add an OptionalPipe to the end of the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.or(Pipe<E,?>... pipes)
Deprecated.
Add an OrFilterPipe to the end the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.order()
Deprecated.
Add an OrderPipe to the end of the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.order(PipeFunction<Pair<E,E>,Integer> compareFunction)
Deprecated.
Add an OrderPipe to the end of the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.order(TransformPipe.Order order)
Deprecated.
Add an OrderPipe to the end of the Pipeline.
|
PipesFluentPipeline<S,?> |
PipesFluentPipeline.orderMap(PipeFunction<Pair<Map.Entry,Map.Entry>,Integer> compareFunction)
Deprecated.
Add a OrderMapPipe to the end of the Pipeline
Given a Map as an input, the map is first ordered and then the keys are emitted in the order.
|
PipesFluentPipeline<S,?> |
PipesFluentPipeline.orderMap(TransformPipe.Order order)
Deprecated.
Add a OrderMapPipe to the end of the Pipeline
Given a Map as an input, the map is first ordered and then the keys are emitted in the order.
|
PipesFluentPipeline<S,List> |
PipesFluentPipeline.path(PipeFunction... pathFunctions)
Deprecated.
Add a PathPipe or PathPipe to the end of the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.random(Double bias)
Deprecated.
Add a RandomFilterPipe to the end of the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.range(int low,
int high)
Deprecated.
Add a RageFilterPipe to the end of the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.retain(Collection<E> collection)
Deprecated.
Add a RetainFilterPipe to the end of the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.retain(String... namedSteps)
Deprecated.
Add a RetainFilterPipe to the end of the Pipeline.
|
PipesFluentPipeline<S,?> |
PipesFluentPipeline.scatter()
Deprecated.
Add a ScatterPipe to the end of the Pipeline.
|
PipesFluentPipeline<S,Row> |
PipesFluentPipeline.select()
Deprecated.
Add a SelectPipe to the end of the Pipeline.
|
PipesFluentPipeline<S,Row> |
PipesFluentPipeline.select(Collection<String> stepNames,
PipeFunction... columnFunctions)
Deprecated.
Add a SelectPipe to the end of the Pipeline.
|
PipesFluentPipeline<S,Row> |
PipesFluentPipeline.select(PipeFunction... columnFunctions)
Deprecated.
Add a SelectPipe to the end of the Pipeline.
|
PipesFluentPipeline<S,List> |
PipesFluentPipeline.shuffle()
Deprecated.
Add a ShufflePipe to the end of the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.sideEffect(PipeFunction<E,?> sideEffectFunction)
Deprecated.
Add a SideEffectFunctionPipe to the end of the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.simplePath()
Deprecated.
Add a CyclicPathFilterPipe to the end of the Pipeline.
|
PipesFluentPipeline<S,S> |
PipesFluentPipeline.start(S object)
Deprecated.
Add a StartPipe to the end of the pipeline.
|
<T> PipesFluentPipeline<S,T> |
PipesFluentPipeline.step(Pipe<E,T> pipe)
Deprecated.
Add an arbitrary Pipe to the end of the pipeline.
|
PipesFluentPipeline<S,?> |
PipesFluentPipeline.step(PipeFunction function)
Deprecated.
Add a FunctionPipe to the end of the pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.store()
Deprecated.
Add an StorePipe to the end of the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.store(Collection<E> storage)
Deprecated.
Add a StorePipe to the end of the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.store(Collection storage,
PipeFunction<E,?> storageFunction)
Deprecated.
Add a StorePipe to the end of the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesPipeline.store(PipeFunction<E,?> storageFunction)
Deprecated.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.store(PipeFunction<E,?> storageFunction)
Deprecated.
Add a StorePipe to the end of the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.table()
Deprecated.
Add a TablePipe to the end of the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.table(PipeFunction... columnFunctions)
Deprecated.
Add a TablePipe to the end of the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.table(Table table)
Deprecated.
Add a TablePipe to the end of the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.table(Table table,
Collection<String> stepNames,
PipeFunction... columnFunctions)
Deprecated.
Add a TablePipe to the end of the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.table(Table table,
PipeFunction... columnFunctions)
Deprecated.
Add a TablePipe to the end of the Pipeline.
|
<T> PipesFluentPipeline<S,T> |
PipesFluentPipeline.transform(PipeFunction<E,T> function)
Deprecated.
Add a TransformFunctionPipe to the end of the Pipeline.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.tree(PipeFunction... branchFunctions)
Deprecated.
Add a TreePipe to the end of the Pipeline
This step maintains an internal tree representation of the paths that have flowed through the step.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.tree(Tree tree,
PipeFunction... branchFunctions)
Deprecated.
Add a TreePipe to the end of the Pipeline
This step maintains an internal tree representation of the paths that have flowed through the step.
|
Copyright © 2010-2014. All Rights Reserved.