Interface ResultSetExtractor<B>

All Known Implementing Classes:
BanExtractor, ImageExtractor, InterestExtractor, Meeter_InterestExtractor, MeeterExtractor, MessageExtractor, RatingExtractor, ReportExtractor

public interface ResultSetExtractor<B>
Interface for extracting a specific Bean from a ResultSet.
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    extract(ResultSet resultSet)
    Extracts the Bean from a ResultSet generated by a CRUD Query.
  • Method Details

    • extract

      B extract(ResultSet resultSet) throws SQLException
      Extracts the Bean from a ResultSet generated by a CRUD Query.
      Parameters:
      resultSet - the resultSet to extract the bean from.
      Returns:
      the Bean object extracted.
      Throws:
      SQLException