Interface SqlFunction<T,R>

All Superinterfaces:
Function<T,R>
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> extends Function<T,R>
A functional interface
Since:
1.90
  • Method Summary

    Modifier and Type
    Method
    Description
    default R
    apply(T rs)
    Applies this function to the given argument.
    applyRs(T rs)
     

    Methods inherited from interface java.util.function.Function

    andThen, compose
  • Method Details

    • apply

      default R apply(T rs)
      Applies this function to the given argument.
      Specified by:
      apply in interface Function<T,R>
      Parameters:
      rs - ResultSet
      Returns:
      the function result
    • applyRs

      R applyRs(T rs) throws SQLException
      Throws:
      SQLException