接口 ItemProcessor<I,​O>

    • 方法概要

      所有方法 实例方法 抽象方法 
      修饰符和类型方法说明
      Oprocess​(I item)
      Process the provided item, returning a potentially modified or new item for continued processing.
    • 方法详细资料

      • process

        @Nullable
        O process​(I item)
           throws java.lang.Exception
        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.
        参数:
        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.