S - T - @FunctionalInterface public interface UncheckedBiConsumer<S,T> extends java.util.function.BiConsumer<S,T>
| Modifier and Type | Method and Description |
|---|---|
default void |
accept(S first,
T second) |
void |
acceptThrows(S first,
T second)
The same semantic as
accept(Object, Object), but allowed to throw exceptions. |
static <S,T> UncheckedBiConsumer<S,T> |
uncheck(UncheckedBiConsumer<S,T> c)
A convenience method to construct
UncheckedBiConsumers from lambda syntax. |
andThendefault void accept(S first, T second)
accept in interface java.util.function.BiConsumer<S,T>void acceptThrows(S first, T second) throws Exception
accept(Object, Object), but allowed to throw exceptions.first - second - Exceptionstatic <S,T> UncheckedBiConsumer<S,T> uncheck(UncheckedBiConsumer<S,T> c)
UncheckedBiConsumers from lambda syntax.c - Copyright © 2013-2015 DuraSpace, Inc.. All Rights Reserved.