Interface TriConsumer<I1,I2,I3>

Type Parameters:
I1 - the type of the first argument to the operation
I2 - the type of the second argument to the operation
I3 - the type of the third argument to the operation
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 TriConsumer<I1,I2,I3>
Represents an operation that accepts three input arguments and returns no result.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    accept(I1 i1, I2 i2, I3 i3)
    Applies this function to the given arguments.
  • Method Details

    • accept

      void accept(I1 i1, I2 i2, I3 i3)
      Applies this function to the given arguments.
      Parameters:
      i1 - the first argument
      i2 - the second argument
      i3 - the third argument