Interface QueryMappingConfiguration

All Known Implementing Classes:
DefaultQueryMappingConfiguration

public interface QueryMappingConfiguration
Configures a RowMapper for each type to be used for extracting entities of that type from a ResultSet.
Since:
4.0
Author:
Jens Schauder, Evgeni Dimitrov
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    An immutable empty instance that will return null for all arguments.
  • Method Summary

    Modifier and Type
    Method
    Description
    <T> @Nullable RowMapper<? extends T>
    Returns the RowMapper to be used for the given type or null if no specific mapper is configured.
  • Field Details

  • Method Details

    • getRowMapper

      <T> @Nullable RowMapper<? extends T> getRowMapper(Class<T> type)
      Returns the RowMapper to be used for the given type or null if no specific mapper is configured.
      Parameters:
      type -
      Returns: