Interface ExpressionFactory.TriFunction<T,​U,​V,​R>

  • Type Parameters:
    T - The type of the first argument
    U - The type of the second argument
    V - The type of the third argument
    R - The type of the result of the function
    Enclosing class:
    ExpressionFactory
    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 ExpressionFactory.TriFunction<T,​U,​V,​R>
    Represents a function that accepts three arguments and produces a result. This is a specialization of Function. This is a functional interface whose functional method is apply(Object, Object, Object).
    See Also:
    Function, BiFunction
    • Method Detail

      • apply

        R apply​(T t,
                U u,
                V v)
        Call the function
        Parameters:
        t - The first argument
        u - The second argument
        v - The third argument
        Returns:
        The result of the function call