- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Consumer
like interface accepting 3 arguments.
- Since:
- 1.3.0
- See Also:
-
-
Method Summary
void
Performs a given operation on the 3 arguments.
-
Method Details
-
accept
void accept(T t,
U u,
V v)
Performs a given operation on the 3 arguments.
- Parameters:
t
- first argument
.
u
- second argument
.
v
- third argument
.
-