接口 ImplicitJoinTableNameSource
-
- 所有超级接口:
ImplicitNameSource
public interface ImplicitJoinTableNameSource extends ImplicitNameSource
Context for determining the implicit name for a join table.- 作者:
- Steve Ebersole
- 另请参阅:
JoinTable
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 AttributePathgetAssociationOwningAttributePath()Access to the name of the attribute, from the owning side, that defines the association.EntityNaminggetNonOwningEntityNaming()Access to entity naming information for the owning side.StringgetNonOwningPhysicalTableName()Access to the physical name of the non-owning entity's primary table.EntityNaminggetOwningEntityNaming()Access to entity naming information for the owning side.StringgetOwningPhysicalTableName()Access to the physical name of the owning entity's primary table.-
从接口继承的方法 org.hibernate.boot.model.naming.ImplicitNameSource
getBuildingContext
-
-
-
-
方法详细资料
-
getOwningPhysicalTableName
String getOwningPhysicalTableName()
Access to the physical name of the owning entity's primary table.- 返回:
- Owning entity's primary table name.
-
getOwningEntityNaming
EntityNaming getOwningEntityNaming()
Access to entity naming information for the owning side.- 返回:
- Owning entity naming information
-
getNonOwningPhysicalTableName
String getNonOwningPhysicalTableName()
Access to the physical name of the non-owning entity's primary table.- 返回:
- Owning entity's primary table name.
-
getNonOwningEntityNaming
EntityNaming getNonOwningEntityNaming()
Access to entity naming information for the owning side.- 返回:
- Owning entity naming information
-
getAssociationOwningAttributePath
AttributePath getAssociationOwningAttributePath()
Access to the name of the attribute, from the owning side, that defines the association.- 返回:
- The owning side's attribute name.
-
-