Package org.flowable.common.rest.api
Interface ListProcessor<REQ,RES>
-
- Type Parameters:
REQ- The type of the elements that need to be processedRES- The type of the elements that will be created
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface ListProcessor<REQ,RES> extends Function<List<REQ>,List<RES>>
A processor for converting List of a certain type into list of a different type.- Author:
- Filip Hrisafov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default List<RES>apply(List<REQ> res)List<RES>processList(List<REQ> list)
-