Class RowMapper<T>

    • Constructor Summary

      Constructors 
      Constructor Description
      RowMapper()  
    • Method Summary

      All Methods Instance Methods Abstract Methods Concrete Methods 
      Modifier and Type Method Description
      abstract java.util.List<T> fetch​(java.sql.ResultSet resultSet)  
      protected <C> C fetchColumn​(java.sql.ResultSet resultSet, int columnIndex, java.lang.Class<C> dataType)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • RowMapper

        public RowMapper()
    • Method Detail

      • fetchColumn

        protected <C> C fetchColumn​(java.sql.ResultSet resultSet,
                                    int columnIndex,
                                    java.lang.Class<C> dataType)
                             throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • fetch

        public abstract java.util.List<T> fetch​(java.sql.ResultSet resultSet)
                                         throws java.sql.SQLException
        Throws:
        java.sql.SQLException