@MissingDocumentation public interface AdvancedTriConsumer<T,U,V> extends TriConsumer<T,U,V>
| Modifier and Type | Method and Description |
|---|---|
default AdvancedTriConsumer<T,U,V> |
andThen(TriConsumer<? super T,? super U,? super V> after)
Returns a composed
TriConsumer that performs, in sequence, this
operation followed by the after operation. |
default <W,X,Y> AdvancedTriConsumer<W,X,Y> |
compose(java.util.function.Function<? super W,? extends T> before1,
java.util.function.Function<? super X,? extends U> before2,
java.util.function.Function<? super Y,? extends V> before3) |
default <W,X> AdvancedBiConsumer<W,X> |
compose(java.util.function.Function<? super W,? extends T> before1,
java.util.function.Function<? super X,? extends U> before2,
java.util.function.Supplier<? extends V> before3) |
default <W,Y> AdvancedBiConsumer<W,Y> |
compose(java.util.function.Function<? super W,? extends T> before1,
java.util.function.Supplier<? extends U> before2,
java.util.function.Function<? super Y,? extends V> before3) |
default <W> AdvancedConsumer<W> |
compose(java.util.function.Function<? super W,? extends T> before1,
java.util.function.Supplier<? extends U> before2,
java.util.function.Supplier<? extends V> before3) |
default <X,Y> AdvancedBiConsumer<X,Y> |
compose(java.util.function.Supplier<? extends T> before1,
java.util.function.Function<? super X,? extends U> before2,
java.util.function.Function<? super Y,? extends V> before3) |
default <X> AdvancedConsumer<X> |
compose(java.util.function.Supplier<? extends T> before1,
java.util.function.Function<? super X,? extends U> before2,
java.util.function.Supplier<? extends V> before3) |
default <Y> AdvancedConsumer<Y> |
compose(java.util.function.Supplier<? extends T> before1,
java.util.function.Supplier<? extends U> before2,
java.util.function.Function<? super Y,? extends V> before3) |
static <T,U,V> AdvancedTriConsumer<T,U,V> |
of(TriConsumer<T,U,V> wrapped) |
default AdvancedRunnable |
supply(java.util.function.Supplier<? extends T> supplier1,
java.util.function.Supplier<? extends U> supplier2,
java.util.function.Supplier<? extends V> supplier3) |
default AdvancedBiConsumer<U,V> |
supplyFirst(java.util.function.Supplier<? extends T> supplier) |
default AdvancedBiConsumer<T,V> |
supplySecond(java.util.function.Supplier<? extends U> supplier) |
default AdvancedBiConsumer<T,U> |
supplyThird(java.util.function.Supplier<? extends V> supplier) |
acceptstatic <T,U,V> AdvancedTriConsumer<T,U,V> of(TriConsumer<T,U,V> wrapped)
default AdvancedTriConsumer<T,U,V> andThen(TriConsumer<? super T,? super U,? super V> after)
TriConsumerTriConsumer that performs, in sequence, this
operation followed by the after operation. If performing either
operation throws an exception, it is relayed to the caller of the
composed operation. If performing this operation throws an exception,
the after operation will not be performed.andThen in interface TriConsumer<T,U,V>after - the operation to perform after this operationTriConsumer that performs in sequence this
operation followed by the after operationdefault <W,X,Y> AdvancedTriConsumer<W,X,Y> compose(java.util.function.Function<? super W,? extends T> before1, java.util.function.Function<? super X,? extends U> before2, java.util.function.Function<? super Y,? extends V> before3)
default <X,Y> AdvancedBiConsumer<X,Y> compose(java.util.function.Supplier<? extends T> before1, java.util.function.Function<? super X,? extends U> before2, java.util.function.Function<? super Y,? extends V> before3)
default <W,Y> AdvancedBiConsumer<W,Y> compose(java.util.function.Function<? super W,? extends T> before1, java.util.function.Supplier<? extends U> before2, java.util.function.Function<? super Y,? extends V> before3)
default <W,X> AdvancedBiConsumer<W,X> compose(java.util.function.Function<? super W,? extends T> before1, java.util.function.Function<? super X,? extends U> before2, java.util.function.Supplier<? extends V> before3)
default <Y> AdvancedConsumer<Y> compose(java.util.function.Supplier<? extends T> before1, java.util.function.Supplier<? extends U> before2, java.util.function.Function<? super Y,? extends V> before3)
default <X> AdvancedConsumer<X> compose(java.util.function.Supplier<? extends T> before1, java.util.function.Function<? super X,? extends U> before2, java.util.function.Supplier<? extends V> before3)
default <W> AdvancedConsumer<W> compose(java.util.function.Function<? super W,? extends T> before1, java.util.function.Supplier<? extends U> before2, java.util.function.Supplier<? extends V> before3)
default AdvancedRunnable supply(java.util.function.Supplier<? extends T> supplier1, java.util.function.Supplier<? extends U> supplier2, java.util.function.Supplier<? extends V> supplier3)
default AdvancedBiConsumer<U,V> supplyFirst(java.util.function.Supplier<? extends T> supplier)
default AdvancedBiConsumer<T,V> supplySecond(java.util.function.Supplier<? extends U> supplier)
default AdvancedBiConsumer<T,U> supplyThird(java.util.function.Supplier<? extends V> supplier)