T
- first argument typeU
- second argument typeR
- return type@FunctionalInterface public interface CheckedBiFunction<T,U,R,E extends Throwable>
BiFunction
BiFunction
Modifier and Type | Method and Description |
---|---|
default <V> CheckedBiFunction<T,U,V,E> |
andThen(CheckedFunction<? super R,? extends V,? extends E> after)
|
R |
apply(T t,
U u)
|
R apply(T t, U u) throws E extends Throwable
t
- first argument.u
- second argument.this
function.Throwable
- a possible checked exceptiondefault <V> CheckedBiFunction<T,U,V,E> andThen(CheckedFunction<? super R,? extends V,? extends E> after)
V
- the return type of the after
parameterafter
- the CheckedFunction
to be chained (taking result of this
as argument)CheckedBiFunction
NullPointerException
- if after
is null
Copyright © 2016–2018 earcam. All rights reserved.