Interface PentaFunction<T,U,V,W,X,R>


public interface PentaFunction<T,U,V,W,X,R>
Represents a callback accepting 5 values and returning a result
  • Method Summary

    Modifier and Type
    Method
    Description
    apply(T t, U u, V v, W w, X x)
    Applies the callback
  • Method Details

    • apply

      R apply(T t, U u, V v, W w, X x)
      Applies the callback
      Parameters:
      t - the first value
      u - the second value
      v - the third value
      w - the fourth value
      x - the fifth value
      Returns:
      the result of the callback