| Constructor and Description |
|---|
FunctionPipe(PipeFunction function) |
| Modifier and Type | Method and Description |
|---|---|
static PipeFunction<LoopPipe.LoopBundle,Boolean> |
LoopPipe.createLoopsFunction(int loops) |
static PipeFunction<Object,Boolean> |
LoopPipe.createTrueFunction() |
| Constructor and Description |
|---|
IfThenElsePipe(PipeFunction<S,Boolean> ifFunction,
PipeFunction<S,?> thenFunction,
PipeFunction<S,?> elseFunction) |
IfThenElsePipe(PipeFunction<S,Boolean> ifFunction,
PipeFunction<S,?> thenFunction,
PipeFunction<S,?> elseFunction) |
IfThenElsePipe(PipeFunction<S,Boolean> ifFunction,
PipeFunction<S,?> thenFunction,
PipeFunction<S,?> elseFunction) |
LoopPipe(Pipe<S,S> pipe,
PipeFunction<LoopPipe.LoopBundle<S>,Boolean> whileFunction) |
LoopPipe(Pipe<S,S> pipe,
PipeFunction<LoopPipe.LoopBundle<S>,Boolean> whileFunction,
PipeFunction<LoopPipe.LoopBundle<S>,Boolean> emitFunction) |
LoopPipe(Pipe<S,S> pipe,
PipeFunction<LoopPipe.LoopBundle<S>,Boolean> whileFunction,
PipeFunction<LoopPipe.LoopBundle<S>,Boolean> emitFunction) |
| Constructor and Description |
|---|
DuplicateFilterPipe(PipeFunction<S,?> function) |
FilterFunctionPipe(PipeFunction<S,Boolean> filterFunction) |
| Modifier and Type | Field and Description |
|---|---|
protected PipeFunction<S,K> |
GroupByPipe.keyFunction |
protected PipeFunction<S,V> |
GroupByPipe.valueFunction |
| Constructor and Description |
|---|
AggregatePipe(Collection aggregate,
PipeFunction<S,?> preAggregateFunction)
The provided PipeFunction will process the object prior to inserting it into the aggregate collection.
|
GroupByPipe(Map<K,Collection<V>> byMap,
PipeFunction<S,K> keyFunction,
PipeFunction<S,V> valueFunction) |
GroupByPipe(Map<K,Collection<V>> byMap,
PipeFunction<S,K> keyFunction,
PipeFunction<S,V> valueFunction) |
GroupByPipe(PipeFunction<S,K> keyFunction,
PipeFunction<S,V> valueFunction) |
GroupByPipe(PipeFunction<S,K> keyFunction,
PipeFunction<S,V> valueFunction) |
GroupByReducePipe(Map<K,V2> reduceMap,
PipeFunction<S,K> keyFunction,
PipeFunction<S,V> valueFunction,
PipeFunction<Collection<V>,V2> reduceFunction) |
GroupByReducePipe(Map<K,V2> reduceMap,
PipeFunction<S,K> keyFunction,
PipeFunction<S,V> valueFunction,
PipeFunction<Collection<V>,V2> reduceFunction) |
GroupByReducePipe(Map<K,V2> reduceMap,
PipeFunction<S,K> keyFunction,
PipeFunction<S,V> valueFunction,
PipeFunction<Collection<V>,V2> reduceFunction) |
GroupByReducePipe(PipeFunction<S,K> keyFunction,
PipeFunction<S,V> valueFunction,
PipeFunction<Collection<V>,V2> reduceFunction) |
GroupByReducePipe(PipeFunction<S,K> keyFunction,
PipeFunction<S,V> valueFunction,
PipeFunction<Collection<V>,V2> reduceFunction) |
GroupByReducePipe(PipeFunction<S,K> keyFunction,
PipeFunction<S,V> valueFunction,
PipeFunction<Collection<V>,V2> reduceFunction) |
GroupCountFunctionPipe(Map<K,Number> countMap,
PipeFunction<S,K> keyFunction,
PipeFunction<Pair<S,Number>,Number> valueFunction) |
GroupCountFunctionPipe(Map<K,Number> countMap,
PipeFunction<S,K> keyFunction,
PipeFunction<Pair<S,Number>,Number> valueFunction) |
GroupCountFunctionPipe(PipeFunction<S,K> keyFunction,
PipeFunction<Pair<S,Number>,Number> valueFunction) |
GroupCountFunctionPipe(PipeFunction<S,K> keyFunction,
PipeFunction<Pair<S,Number>,Number> valueFunction) |
SideEffectFunctionPipe(PipeFunction<S,?> sideEffectFunction) |
StorePipe(Collection storage,
PipeFunction<S,?> preStoreFunction)
The provided PipeFunction will process the object prior to inserting it into the storage collection.
|
TablePipe(Table table,
Collection<String> stepNames,
List<AsPipe> allPreviousAsPipes,
PipeFunction... columnFunctions) |
TreePipe(PipeFunction... branchFunctions) |
TreePipe(Tree tree,
PipeFunction... branchFunctions) |
| Constructor and Description |
|---|
GatherFunctionPipe(PipeFunction<List<S>,E> postFilterFunction) |
OrderMapPipe(PipeFunction<Pair<Map.Entry<S,?>,Map.Entry<S,?>>,Integer> compareFunction) |
OrderPipe(PipeFunction<Pair<S,S>,Integer> compareFunction) |
PathPipe(PipeFunction... pathFunctions) |
SelectPipe(Collection<String> stepNames,
List<AsPipe> allPreviousAsPipes,
PipeFunction... stepFunctions) |
TransformFunctionPipe(PipeFunction<S,E> transformFunction) |
| Modifier and Type | Class and Description |
|---|---|
class |
PipesFunction<A,B>
PipesFunction is a PipeFunction with the extra capability of maintaining a reference to an AsMap.
|
| Modifier and Type | Method and Description |
|---|---|
static PipeFunction |
PipeHelper.createPipeFunction(Class clazz,
String methodName,
Class... argumentTypes)
Create a PipeFunction for a static method.
|
static PipeFunction |
PipeHelper.createPipeFunction(Method method)
Create a PipeFunction for a static method.
|
static PipeFunction |
FluentUtility.prepareFunction(AsMap asMap,
PipeFunction function) |
static PipeFunction[] |
FluentUtility.prepareFunctions(AsMap asMap,
PipeFunction... functions) |
| Modifier and Type | Method and Description |
|---|---|
PipesPipeline<S,E> |
PipesPipeline.aggregate(Collection aggregate,
PipeFunction<E,?> aggregateFunction)
Deprecated.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.aggregate(Collection aggregate,
PipeFunction<E,?> aggregateFunction)
Deprecated.
Add an AggregatePipe to the end of the Pipeline.
|
PipesPipeline<S,E> |
PipesPipeline.aggregate(PipeFunction<E,?> aggregateFunction)
Deprecated.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.aggregate(PipeFunction<E,?> aggregateFunction)
Deprecated.
Add an AggregatePipe to the end of the Pipeline.
|
PipesPipeline<S,E> |
PipesPipeline.dedup(PipeFunction<E,?> dedupFunction)
Deprecated.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.dedup(PipeFunction<E,?> dedupFunction)
Deprecated.
Add a DuplicateFilterPipe to the end of the Pipeline.
|
PipesPipeline<S,E> |
PipesPipeline.filter(PipeFunction<E,Boolean> filterFunction)
Deprecated.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.filter(PipeFunction<E,Boolean> filterFunction)
Deprecated.
Add an FilterFunctionPipe to the end of the Pipeline.
|
PipesPipeline<S,?> |
PipesPipeline.gather(PipeFunction<List,?> function)
Deprecated.
|
PipesFluentPipeline<S,?> |
PipesFluentPipeline.gather(PipeFunction<List,?> function)
Deprecated.
Add a GatherPipe to the end of the Pipeline.
|
PipesPipeline<S,E> |
PipesPipeline.groupBy(Map<?,List<?>> map,
PipeFunction keyFunction,
PipeFunction valueFunction)
Deprecated.
|
PipesPipeline<S,E> |
PipesPipeline.groupBy(Map<?,List<?>> map,
PipeFunction keyFunction,
PipeFunction valueFunction)
Deprecated.
|
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<?,List<?>> map,
PipeFunction keyFunction,
PipeFunction valueFunction)
Deprecated.
Add a GroupByPipe to the end of the Pipeline.
|
PipesPipeline<S,E> |
PipesPipeline.groupBy(Map reduceMap,
PipeFunction keyFunction,
PipeFunction valueFunction,
PipeFunction reduceFunction)
Deprecated.
|
PipesPipeline<S,E> |
PipesPipeline.groupBy(Map reduceMap,
PipeFunction keyFunction,
PipeFunction valueFunction,
PipeFunction reduceFunction)
Deprecated.
|
PipesPipeline<S,E> |
PipesPipeline.groupBy(Map reduceMap,
PipeFunction keyFunction,
PipeFunction valueFunction,
PipeFunction reduceFunction)
Deprecated.
|
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(Map reduceMap,
PipeFunction keyFunction,
PipeFunction valueFunction,
PipeFunction reduceFunction)
Deprecated.
Add a GroupByReducePipe 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.
|
PipesPipeline<S,E> |
PipesPipeline.groupBy(PipeFunction keyFunction,
PipeFunction valueFunction)
Deprecated.
|
PipesPipeline<S,E> |
PipesPipeline.groupBy(PipeFunction keyFunction,
PipeFunction valueFunction)
Deprecated.
|
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)
Deprecated.
Add a GroupByPipe to the end of the Pipeline.
|
PipesPipeline<S,E> |
PipesPipeline.groupBy(PipeFunction keyFunction,
PipeFunction valueFunction,
PipeFunction reduceFunction)
Deprecated.
|
PipesPipeline<S,E> |
PipesPipeline.groupBy(PipeFunction keyFunction,
PipeFunction valueFunction,
PipeFunction reduceFunction)
Deprecated.
|
PipesPipeline<S,E> |
PipesPipeline.groupBy(PipeFunction keyFunction,
PipeFunction valueFunction,
PipeFunction reduceFunction)
Deprecated.
|
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.groupBy(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,
PipeFunction reduceFunction)
Deprecated.
Add a GroupByReducePipe to the end of the Pipeline.
|
PipesPipeline<S,E> |
PipesPipeline.groupCount(Map<?,Number> map,
PipeFunction keyFunction)
Deprecated.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.groupCount(Map<?,Number> map,
PipeFunction keyFunction)
Deprecated.
Add a GroupCountPipe or GroupCountFunctionPipe to the end of the Pipeline.
|
PipesPipeline<S,E> |
PipesPipeline.groupCount(Map<?,Number> map,
PipeFunction keyFunction,
PipeFunction<Pair<?,Number>,Number> valueFunction)
Deprecated.
|
PipesPipeline<S,E> |
PipesPipeline.groupCount(Map<?,Number> map,
PipeFunction keyFunction,
PipeFunction<Pair<?,Number>,Number> valueFunction)
Deprecated.
|
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(Map<?,Number> map,
PipeFunction keyFunction,
PipeFunction<Pair<?,Number>,Number> valueFunction)
Deprecated.
Add a GroupCountPipe or GroupCountFunctionPipe to the end of the Pipeline.
|
PipesPipeline<S,E> |
PipesPipeline.groupCount(PipeFunction keyFunction)
Deprecated.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.groupCount(PipeFunction keyFunction)
Deprecated.
Add a GroupCountPipe or GroupCountFunctionPipe to the end of the Pipeline.
|
PipesPipeline<S,E> |
PipesPipeline.groupCount(PipeFunction keyFunction,
PipeFunction<Pair<?,Number>,Number> valueFunction)
Deprecated.
|
PipesPipeline<S,E> |
PipesPipeline.groupCount(PipeFunction keyFunction,
PipeFunction<Pair<?,Number>,Number> valueFunction)
Deprecated.
|
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,E> |
PipesFluentPipeline.groupCount(PipeFunction keyFunction,
PipeFunction<Pair<?,Number>,Number> valueFunction)
Deprecated.
Add a GroupCountPipe or GroupCountFunctionPipe to the end of the Pipeline.
|
PipesPipeline<S,?> |
PipesPipeline.ifThenElse(PipeFunction<E,Boolean> ifFunction,
PipeFunction<E,?> thenFunction,
PipeFunction<E,?> elseFunction)
Deprecated.
|
PipesPipeline<S,?> |
PipesPipeline.ifThenElse(PipeFunction<E,Boolean> ifFunction,
PipeFunction<E,?> thenFunction,
PipeFunction<E,?> elseFunction)
Deprecated.
|
PipesPipeline<S,?> |
PipesPipeline.ifThenElse(PipeFunction<E,Boolean> ifFunction,
PipeFunction<E,?> thenFunction,
PipeFunction<E,?> elseFunction)
Deprecated.
|
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,?> |
PipesFluentPipeline.ifThenElse(PipeFunction<E,Boolean> ifFunction,
PipeFunction<E,?> thenFunction,
PipeFunction<E,?> elseFunction)
Deprecated.
Add an IfThenElsePipe 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.
|
PipesPipeline<S,E> |
PipesPipeline.loop(int numberedStep,
PipeFunction<LoopPipe.LoopBundle<E>,Boolean> whileFunction)
Deprecated.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.loop(int numberedStep,
PipeFunction<LoopPipe.LoopBundle<E>,Boolean> whileFunction)
Deprecated.
Add a LoopPipe to the end of the Pipeline.
|
PipesPipeline<S,E> |
PipesPipeline.loop(int numberedStep,
PipeFunction<LoopPipe.LoopBundle<E>,Boolean> whileFunction,
PipeFunction<LoopPipe.LoopBundle<E>,Boolean> emitFunction)
Deprecated.
|
PipesPipeline<S,E> |
PipesPipeline.loop(int numberedStep,
PipeFunction<LoopPipe.LoopBundle<E>,Boolean> whileFunction,
PipeFunction<LoopPipe.LoopBundle<E>,Boolean> emitFunction)
Deprecated.
|
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(int numberedStep,
PipeFunction<LoopPipe.LoopBundle<E>,Boolean> whileFunction,
PipeFunction<LoopPipe.LoopBundle<E>,Boolean> emitFunction)
Deprecated.
Add a LoopPipe to the end of the Pipeline.
|
PipesPipeline<S,E> |
PipesPipeline.loop(String namedStep,
PipeFunction<LoopPipe.LoopBundle<E>,Boolean> whileFunction)
Deprecated.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.loop(String namedStep,
PipeFunction<LoopPipe.LoopBundle<E>,Boolean> whileFunction)
Deprecated.
Add a LoopPipe to the end of the Pipeline.
|
PipesPipeline<S,E> |
PipesPipeline.loop(String namedStep,
PipeFunction<LoopPipe.LoopBundle<E>,Boolean> whileFunction,
PipeFunction<LoopPipe.LoopBundle<E>,Boolean> emitFunction)
Deprecated.
|
PipesPipeline<S,E> |
PipesPipeline.loop(String namedStep,
PipeFunction<LoopPipe.LoopBundle<E>,Boolean> whileFunction,
PipeFunction<LoopPipe.LoopBundle<E>,Boolean> emitFunction)
Deprecated.
|
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.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.
|
PipesPipeline<S,E> |
PipesPipeline.order(PipeFunction<Pair<E,E>,Integer> compareFunction)
Deprecated.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.order(PipeFunction<Pair<E,E>,Integer> compareFunction)
Deprecated.
Add an OrderPipe to the end of the Pipeline.
|
PipesPipeline<S,?> |
PipesPipeline.orderMap(PipeFunction<Pair<Map.Entry,Map.Entry>,Integer> compareFunction)
Deprecated.
|
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.
|
PipesPipeline<S,List> |
PipesPipeline.path(PipeFunction... pathFunctions)
Deprecated.
|
PipesFluentPipeline<S,List> |
PipesFluentPipeline.path(PipeFunction... pathFunctions)
Deprecated.
Add a PathPipe or PathPipe to the end of the Pipeline.
|
static PipeFunction |
FluentUtility.prepareFunction(AsMap asMap,
PipeFunction function) |
static PipeFunction[] |
FluentUtility.prepareFunctions(AsMap asMap,
PipeFunction... functions) |
PipesPipeline<S,Row> |
PipesPipeline.select(Collection<String> stepNames,
PipeFunction... columnFunctions)
Deprecated.
|
PipesFluentPipeline<S,Row> |
PipesFluentPipeline.select(Collection<String> stepNames,
PipeFunction... columnFunctions)
Deprecated.
Add a SelectPipe to the end of the Pipeline.
|
PipesPipeline<S,Row> |
PipesPipeline.select(PipeFunction... columnFunctions)
Deprecated.
|
PipesFluentPipeline<S,Row> |
PipesFluentPipeline.select(PipeFunction... columnFunctions)
Deprecated.
Add a SelectPipe to the end of the Pipeline.
|
PipesPipeline<S,E> |
PipesPipeline.sideEffect(PipeFunction<E,?> sideEffectFunction)
Deprecated.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.sideEffect(PipeFunction<E,?> sideEffectFunction)
Deprecated.
Add a SideEffectFunctionPipe to the end of the Pipeline.
|
PipesPipeline<S,?> |
PipesPipeline.step(PipeFunction function)
Deprecated.
|
PipesFluentPipeline<S,?> |
PipesFluentPipeline.step(PipeFunction function)
Deprecated.
Add a FunctionPipe to the end of the pipeline.
|
PipesPipeline<S,E> |
PipesPipeline.store(Collection storage,
PipeFunction<E,?> storageFunction)
Deprecated.
|
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.
|
PipesPipeline<S,E> |
PipesPipeline.table(PipeFunction... columnFunctions)
Deprecated.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.table(PipeFunction... columnFunctions)
Deprecated.
Add a TablePipe to the end of the Pipeline.
|
PipesPipeline<S,E> |
PipesPipeline.table(Table table,
Collection<String> stepNames,
PipeFunction... columnFunctions)
Deprecated.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.table(Table table,
Collection<String> stepNames,
PipeFunction... columnFunctions)
Deprecated.
Add a TablePipe to the end of the Pipeline.
|
PipesPipeline<S,E> |
PipesPipeline.table(Table table,
PipeFunction... columnFunctions)
Deprecated.
|
PipesFluentPipeline<S,E> |
PipesFluentPipeline.table(Table table,
PipeFunction... columnFunctions)
Deprecated.
Add a TablePipe to the end of the Pipeline.
|
<T> PipesPipeline<S,T> |
PipesPipeline.transform(PipeFunction<E,T> function)
Deprecated.
|
<T> PipesFluentPipeline<S,T> |
PipesFluentPipeline.transform(PipeFunction<E,T> function)
Deprecated.
Add a TransformFunctionPipe to the end of the Pipeline.
|
PipesPipeline<S,E> |
PipesPipeline.tree(PipeFunction... branchFunctions)
Deprecated.
|
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.
|
PipesPipeline<S,E> |
PipesPipeline.tree(Tree tree,
PipeFunction... branchFunctions)
Deprecated.
|
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.
|
| Modifier and Type | Method and Description |
|---|---|
Table |
Table.apply(PipeFunction... functions) |
Copyright © 2010-2014. All Rights Reserved.