Interface SQLFunction<T,R>

Type Parameters:
T - the input type for this interface
R - the type returned by this interface
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface SQLFunction<T,R>
A "Function" function type that could throw a SQLException.

Necessary because the built-in Function interface doesn't allow throwing checked exceptions.

See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    apply(T input)