- 既知の実装クラスのリスト:
DefaultTableNameMapper
public interface TableNameMapper
A mapper from a class or candidates of table name to a valid table name exists on database.
- 作成者:
- nkjm
-
メソッドの概要
修飾子とタイプメソッド説明getTableName(Class<?> objectClass, DatabaseMetaData metaData) Get table name corresponding with the object class.getTableName(String tableName, DatabaseMetaData metaData) Get table name corresponding with the table name.
-
メソッドの詳細
-
getTableName
Get table name corresponding with the object class.- パラメータ:
objectClass- object class mapping to tablemetaData-- 戻り値:
- table name exists in database.
-
getTableName
Get table name corresponding with the table name.- パラメータ:
tableName- object class mapping to tablemetaData-- 戻り値:
- table name exists in database.
-