Interface TriConsumer<T,U,V>


public interface TriConsumer<T,U,V>
Represents a callback that accepts 3 values
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    accept(T t, U u, V v)
    Performs this operation on the given arguments.
  • Method Details

    • accept

      void accept(T t, U u, V v)
      Performs this operation on the given arguments.
      Parameters:
      t - the first input argument
      u - the second input argument
      v - the third input argument