Interface SheetUtil.Function5Arity<A,​B,​C,​D,​E,​R>

  • Type Parameters:
    A - the type of the first input to the function
    B - the type of the second input to the function
    C - the type of the third input to the function
    D - the type of the fourth input to the function
    E - the type of the fifth input to the function
    R - the return type of the function
    Enclosing class:
    SheetUtil
    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 SheetUtil.Function5Arity<A,​B,​C,​D,​E,​R>
    A function with 5 inputs and a return value.
    Since:
    POI 5.4.1
    • Method Detail

      • apply

        R apply​(A a,
                B b,
                C c,
                D d,
                E e)