public class CompositeItemProcessorBuilder<I,O>
extends java.lang.Object
CompositeItemProcessorBuilder.| Constructor and Description |
|---|
CompositeItemProcessorBuilder() |
| Modifier and Type | Method and Description |
|---|---|
CompositeItemProcessor<I,O> |
build()
Returns a fully constructed
CompositeItemProcessor. |
CompositeItemProcessorBuilder<I,O> |
delegates(ItemProcessor<?,?>... delegates)
Establishes the
ItemProcessor delegates that will work on the item to be processed. |
CompositeItemProcessorBuilder<I,O> |
delegates(java.util.List<? extends ItemProcessor<?,?>> delegates)
Establishes the
ItemProcessor delegates that will work on the item to be processed. |
public CompositeItemProcessorBuilder<I,O> delegates(java.util.List<? extends ItemProcessor<?,?>> delegates)
ItemProcessor delegates that will work on the item to be processed.delegates - list of ItemProcessor delegates that will work on the item.CompositeItemProcessor.setDelegates(List)public CompositeItemProcessorBuilder<I,O> delegates(ItemProcessor<?,?>... delegates)
ItemProcessor delegates that will work on the item to be processed.delegates - the ItemProcessor delegates that will work on the item.delegates(List)public CompositeItemProcessor<I,O> build()
CompositeItemProcessor.CompositeItemProcessor