-
- 型パラメータ:
T-
- 機能インタフェース
- これは機能インタフェースなので、ラムダ式またはメソッド参照の割当てターゲットとして使用できます。
@FunctionalInterface public interface RowMapper<T>
Maps a row in aResultSetto a object.- 作成者:
- nkjm
-
-
メソッドの概要
すべてのメソッド インスタンス・メソッド abstractメソッド 修飾子とタイプ メソッド 説明 TmapRow(ResultSet resultSet, int rowNum)Maps a row inRowMapperto a object.
-
-
-
メソッドの詳細
-
mapRow
T mapRow(ResultSet resultSet, int rowNum) throws SQLException
Maps a row inRowMapperto a object.- パラメータ:
resultSet- the ResultSet to map (pre-initialized for the current row)rowNum- the number of the current row. it starts 1 ( e.g. 1, 2, ...).- 戻り値:
- 例外:
SQLException
-
-