Interface StreamTransform<I,​O>

  • Type Parameters:
    I -
    O -
    All Superinterfaces:
    java.util.function.Function<java.util.stream.Stream<I>,​java.util.stream.Stream<O>>
    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 StreamTransform<I,​O>
    extends java.util.function.Function<java.util.stream.Stream<I>,​java.util.stream.Stream<O>>
    Helper interface to make transformations on streams less verbose Inherits from Function for out of the box chaining with Function.andThen(Function).
    Author:
    Claus Stadler 11/09/2020
    • Method Summary

      • Methods inherited from interface java.util.function.Function

        andThen, apply, compose