Interface ResultSetMapFunction<T>

Type Parameters:
T - Mapped type.

public interface ResultSetMapFunction<T>
Functional interface used to map ResultSet to another data structure.
  • Method Summary

    Modifier and Type
    Method
    Description
    apply(ResultSet resultSet)
    Map resultSet to another type.
  • Method Details

    • apply

      T apply(ResultSet resultSet) throws Exception
      Map resultSet to another type.
      Parameters:
      resultSet - Input.
      Returns:
      Output.
      Throws:
      Exception - If an error occurred during mapping.