接口 ImplicitPrimaryKeyJoinColumnNameSource
-
- 所有超级接口:
ImplicitNameSource
public interface ImplicitPrimaryKeyJoinColumnNameSource extends ImplicitNameSource
Used to help determine the implicit name of columns which are part of a primary-key, well simultaneously being part of a foreign-key (join). Generally, this happens in:- secondary tables
- joined inheritance tables
- one-to-one associations
- 作者:
- Steve Ebersole
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 IdentifiergetReferencedPrimaryKeyColumnName()Access the name of the column that is a primary key column in the referenced-table that is referenced by the foreign-key described here.IdentifiergetReferencedTableName()Access the name of the table referenced by the foreign-key described here.-
从接口继承的方法 org.hibernate.boot.model.naming.ImplicitNameSource
getBuildingContext
-
-
-
-
方法详细资料
-
getReferencedTableName
Identifier getReferencedTableName()
Access the name of the table referenced by the foreign-key described here.- 返回:
- The referenced table name.
-
getReferencedPrimaryKeyColumnName
Identifier getReferencedPrimaryKeyColumnName()
Access the name of the column that is a primary key column in the referenced-table that is referenced by the foreign-key described here.- 返回:
- The referenced primary key column name.
-
-