Interface TriConsumer<T,U,V>
- Type Parameters:
T- first argument typeU- second argument typeV- third argument type
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Three-argument variant of
Consumer.-
Method Summary
-
Method Details
-
accept
-
andThen
Returns a composedTriConsumerthat runs this consumer and thenafter.- Parameters:
after- the consumer to run after this one- Returns:
- the composed consumer
-