Class DefaultExtractor<T>

    • Constructor Detail

      • DefaultExtractor

        public DefaultExtractor​(@NotNull
                                RowMapper<T> mapper)
      • DefaultExtractor

        public DefaultExtractor​(@NotNull
                                RowMapper<T> mapper,
                                int limit)
    • Method Detail

      • extractData

        @Nullable
        public List<T> extractData​(@NotNull
                                   ResultSet rs)
                            throws SQLException
        Description copied from interface: ResultSetExtractor
        Implementations of this method must provide the processing logic (data extraction) of the entire ResultSet.
        Specified by:
        extractData in interface ResultSetExtractor<T>
        Parameters:
        rs - the ResultSet to extract data from. Implementations don't need to close this: it will be closed by DataTemplate
        Returns:
        an object result or null if it's not available
        Throws:
        SQLException - if an SQLException is encountered while trying to navigate the ResultSet