@FunctionalInterface
public interface ExceptionToIntBiFunction<T,U,E extends java.lang.Exception>
Modifier and Type | Method and Description |
---|---|
default <R> ExceptionBiFunction<T,U,R,E> |
andThen(ExceptionIntFunction<R,E> after) |
default <R> ExceptionBiFunction<T,U,R,E> |
andThen(ExceptionLongFunction<R,E> after) |
int |
apply(T t,
U u)
Apply this function to the given arguments.
|
int apply(T t, U u) throws E extends java.lang.Exception
t
- the first argumentu
- the second argumentE
- if an exception occursE extends java.lang.Exception
default <R> ExceptionBiFunction<T,U,R,E> andThen(ExceptionIntFunction<R,E> after)
default <R> ExceptionBiFunction<T,U,R,E> andThen(ExceptionLongFunction<R,E> after)
Copyright © 2015 JBoss, a division of Red Hat, Inc.