Interface IMapper<T extends BaseEntity>

  • All Known Implementing Classes:
    BaseMapper

    public interface IMapper<T extends BaseEntity>
    Author:
    Collin Alpert
    • Method Detail

      • map

        java.util.Optional<T> map​(java.sql.ResultSet set)
                           throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • mapToList

        java.util.List<T> mapToList​(java.sql.ResultSet set)
                             throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • mapToStream

        java.util.stream.Stream<T> mapToStream​(java.sql.ResultSet set)
                                        throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • mapToArray

        T[] mapToArray​(java.sql.ResultSet set)
                throws java.sql.SQLException
        Throws:
        java.sql.SQLException