Interface JDBCMapper.BiFunctionSQLException<T,U,R>
-
- Enclosing class:
- JDBCMapper
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface protected static interface JDBCMapper.BiFunctionSQLException<T,U,R>
- Since:
- 7.10-HF25, 8.10-HF06, 9.2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description R
apply(T t, U u)
Applies this function to the given arguments.
-
-
-
Method Detail
-
apply
R apply(T t, U u) throws SQLException
Applies this function to the given arguments.- Parameters:
t
- the first function argumentu
- the second function argument- Returns:
- the function result
- Throws:
SQLException
-
-