Skip to content
This repository has been archived by the owner on Jan 20, 2023. It is now read-only.

Add dummy constructor and update libs.

Compare
Choose a tag to compare
@k163377 k163377 released this 14 Jun 07:03
· 53 commits to master since this release
6b3a637

ダミーコンストラクタの追加

KClassをターゲットとした初期化時に以下のように記述できるようにした。

// これまでの書き方
val mapper: KRowMapper<Dst> = KRowMapper(Dst::class) { fieldName: String ->
    /* フィールド名の変換処理 */
}

// ダミーコンストラクタを用いた書き方
val mapper: KRowMapper<Dst> = KRowMapper<Dst>  { fieldName: String ->
    /* フィールド名の変換処理 */
}

その他

  • 内部で利用しているライブラリのアップデート
  • カバレッジ計測等の追加