Interface TriFunction<T,U,V,R>

Type Parameters:
T - the type of the first argument
U - the type of the 2nd argument
V - the type of the 3rd argument
R - the return 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 TriFunction<T,U,V,R>
Represent a function that accepts 3 arguments and produces a result.
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    apply(T t, U u, V v)
    Apply the function to the specified arguments.
  • Method Details

    • apply

      R apply(T t, U u, V v)
      Apply the function to the specified arguments.
      Parameters:
      t - the first argument
      u - the 2nd argument
      v - the 3rd argument
      Returns:
      the return value