@FunctionalInterface
public interface Consumer3<T1,T2,T3>
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.
|
default void accept(Tuple3<? extends T1,? extends T2,? extends T3> args)
args
- The arguments as a tuple.default Consumer2<T2,T3> acceptPartially(T1 v1)
default Consumer1<T3> acceptPartially(T1 v1, T2 v2)
default Consumer0 acceptPartially(T1 v1, T2 v2, T3 v3)
default Consumer2<T2,T3> acceptPartially(Tuple1<? extends T1> args)
default Consumer1<T3> acceptPartially(Tuple2<? extends T1,? extends T2> args)
Copyright © 2018. All rights reserved.