Class FunctionChain<I,​O>

  • Type Parameters:
    I - Type of input
    O - Type of output
    All Implemented Interfaces:
    Function<I,​O>

    public class FunctionChain<I,​O>
    extends FunctionComposite<I,​O,​Function<I,​O>>
    A composite Function that applies the given functions consecutively, returning the final output.
    • Constructor Detail

      • FunctionChain

        public FunctionChain()
      • FunctionChain

        public FunctionChain​(Function... functions)
      • FunctionChain

        public FunctionChain​(List<Function> functions)