Uses of Interface
org.springframework.batch.item.ItemProcessor

Packages that use ItemProcessor
org.springframework.batch.item.adapter Adapters for Plain Old Java Objects. 
org.springframework.batch.item.support Internal support package 
org.springframework.batch.item.validator Infrastructure implementations of item validator concerns. 
 

Uses of ItemProcessor in org.springframework.batch.item.adapter
 

Classes in org.springframework.batch.item.adapter that implement ItemProcessor
 class ItemProcessorAdapter<I,O>
          Invokes a custom method on a delegate plain old Java object which itself processes an item.
 

Uses of ItemProcessor in org.springframework.batch.item.support
 

Classes in org.springframework.batch.item.support that implement ItemProcessor
 class CompositeItemProcessor<I,O>
          Composite ItemProcessor that passes the item through a sequence of injected ItemTransformers (return value of previous transformation is the entry value of the next).

Note the user is responsible for injecting a chain of ItemProcessor s that conforms to declared input and output types.
 class PassThroughItemProcessor<T>
          Simple ItemProcessor that does nothing - simply passes its argument through to the caller.
 

Method parameters in org.springframework.batch.item.support with type arguments of type ItemProcessor
 void CompositeItemProcessor.setDelegates(List<ItemProcessor<Object,Object>> delegates)
           
 

Uses of ItemProcessor in org.springframework.batch.item.validator
 

Classes in org.springframework.batch.item.validator that implement ItemProcessor
 class ValidatingItemProcessor<T>
          Simple implementation of ItemProcessor that validates input and returns it without modifications.
 



Copyright © 2013. All Rights Reserved.