Interface QuadFunction<T,U,V,W,R>


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

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

    • apply

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