Interface TriFunction<T,U,V,R>

Type Parameters:
T - The first input parameter
U - The second input parameter
V - The third input parameter
R - The return value of this function
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>
A function which takes three parameters of different types as its input, then returns a single value whose type is not necessarily related to its input parameters.
  • Method Summary

    Modifier and Type
    Method
    Description
    apply(T t, U u, V v)
    Applies this function to the provided parameters.
  • Method Details

    • apply

      R apply(T t, U u, V v)
      Applies this function to the provided parameters.
      Parameters:
      t - The first parameter of this function
      u - The second parameter of this function
      v - The third parameter of this function
      Returns:
      The return value of this function