Interface TriConsumer<R,S,T>

Type Parameters:
R - the type of the first argument to the operation
S - the type of the second argument to the operation
T - the type of the third argument to the operation
All Known Implementing Classes:
TypeResolver.TypeEnvHolder
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<R,S,T>
Represents an operation that accepts three input arguments and returns no result. This is the three-arity specialization of Consumer. Unlike most other functional interfaces, TriConsumer is expected to operate via side-effects.

This is a functional interface whose functional method is accept(Object, Object, Object).

See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    accept(R r, S s, T t)
    Performs this operation on the given arguments.
  • Method Details

    • accept

      void accept(R r, S s, T t)
      Performs this operation on the given arguments.
      Parameters:
      r - the first input argument
      s - the second input argument
      t - the third input argument