Interface QuadFunction<A,​B,​C,​D,​R>

  • Type Parameters:
    A - The first parameter type
    B - The second parameter type
    C - The third parameter type
    D - The fourth parameter type
    R - The output type
    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 QuadFunction<A,​B,​C,​D,​R>
    Represents a function that takes four inputs and produces one output
    • Method Detail

      • apply

        R apply​(A a,
                B b,
                C c,
                D d)
         throws sailpoint.tools.GeneralException
        Applies the function to the given arguments
        Throws:
        sailpoint.tools.GeneralException