类 CompositeItemProcessor<I,​O>

  • 所有已实现的接口:
    ItemProcessor<I,​O>, org.springframework.beans.factory.InitializingBean

    public class CompositeItemProcessor<I,​O>
    extends java.lang.Object
    implements ItemProcessor<I,​O>, org.springframework.beans.factory.InitializingBean
    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 ItemProcessors that conforms to declared input and output types.
    作者:
    Robert Kasanicky
    • 方法概要

      所有方法 实例方法 具体方法 
      修饰符和类型方法说明
      voidafterPropertiesSet() 
      Oprocess​(I item)
      Process the provided item, returning a potentially modified or new item for continued processing.
      voidsetDelegates​(java.util.List<? extends ItemProcessor<?,​?>> delegates)
      Establishes the ItemProcessor delegates that will work on the item to be processed.
      • 从类继承的方法 java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 方法详细资料

      • process

        public O process​(I item)
                  throws java.lang.Exception
        从接口复制的说明: ItemProcessor
        Process the provided item, returning a potentially modified or new item for continued processing. If the returned result is null, it is assumed that processing of the item should not continue.
        指定者:
        process 在接口中 ItemProcessor<I,​O>
        参数:
        item - to be processed
        返回:
        potentially modified or new item for continued processing, null if processing of the provided item should not continue.
        抛出:
        java.lang.Exception - thrown if exception occurs during processing.
      • afterPropertiesSet

        public void afterPropertiesSet()
                                throws java.lang.Exception
        指定者:
        afterPropertiesSet 在接口中 org.springframework.beans.factory.InitializingBean
        抛出:
        java.lang.Exception
      • setDelegates

        public void setDelegates​(java.util.List<? extends ItemProcessor<?,​?>> delegates)
        Establishes the ItemProcessor delegates that will work on the item to be processed.
        参数:
        delegates - list of ItemProcessor delegates that will work on the item.