Interface Functions.Function5<T1,​T2,​T3,​T4,​T5,​R>

  • All Superinterfaces:
    java.util.function.Function<java.util.List<java.lang.Object>,​R>
    Enclosing class:
    Functions
    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 static interface Functions.Function5<T1,​T2,​T3,​T4,​T5,​R>
    extends java.util.function.Function<java.util.List<java.lang.Object>,​R>
    • Method Detail

      • apply

        R apply​(T1 item1,
                T2 item2,
                T3 item3,
                T4 item4,
                T5 item5)
      • apply

        default R apply​(java.util.List<java.lang.Object> objects)
        Specified by:
        apply in interface java.util.function.Function<T1,​T2>