-
- 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 Consumer3<T1,T2,T3>
A consumer with 3 arguments.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default void
accept(Tuple3<? extends T1,? extends T2,? extends T3> args)
Performs this operation on the given argument.void
accept(T1 v1, T2 v2, T3 v3)
Performs this operation on the given argument.default Consumer2<T2,T3>
acceptPartially(Tuple1<? extends T1> args)
Let this consumer partially accept the arguments.default Consumer1<T3>
acceptPartially(Tuple2<? extends T1,? extends T2> args)
Let this consumer partially accept the arguments.default Consumer0
acceptPartially(Tuple3<? extends T1,? extends T2,? extends T3> args)
Let this consumer partially accept the arguments.default Consumer2<T2,T3>
acceptPartially(T1 v1)
Let this consumer partially accept the arguments.default Consumer1<T3>
acceptPartially(T1 v1, T2 v2)
Let this consumer partially accept the arguments.default Consumer0
acceptPartially(T1 v1, T2 v2, T3 v3)
Let this consumer partially accept the arguments.
-
-
-
Method Detail
-
accept
default void accept(Tuple3<? extends T1,? extends T2,? extends T3> args)
Performs this operation on the given argument.- Parameters:
args
- The arguments as a tuple.
-
acceptPartially
default Consumer2<T2,T3> acceptPartially(T1 v1)
Let this consumer partially accept the arguments.
-
acceptPartially
default Consumer1<T3> acceptPartially(T1 v1, T2 v2)
Let this consumer partially accept the arguments.
-
acceptPartially
default Consumer0 acceptPartially(T1 v1, T2 v2, T3 v3)
Let this consumer partially accept the arguments.
-
acceptPartially
default Consumer2<T2,T3> acceptPartially(Tuple1<? extends T1> args)
Let this consumer partially accept the arguments.
-
acceptPartially
default Consumer1<T3> acceptPartially(Tuple2<? extends T1,? extends T2> args)
Let this consumer partially accept the arguments.
-
-