接口 PluralAttributeKeySource
-
- 所有已知实现类:
PluralAttributeKeySourceImpl
public interface PluralAttributeKeySource extends ForeignKeyContributingSource, RelationalValueSourceContainer
Describes the source mapping of plural-attribute (collection) foreign-key information.- 作者:
- Steve Ebersole
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 StringgetReferencedPropertyName()booleanisCascadeDeleteEnabled()Is "cascade delete" enabled for the foreign key?-
从接口继承的方法 org.hibernate.boot.model.source.spi.ColumnBindingDefaults
areValuesIncludedInInsertByDefault, areValuesIncludedInUpdateByDefault, areValuesNullableByDefault
-
从接口继承的方法 org.hibernate.boot.model.source.spi.ForeignKeyContributingSource
createForeignKeyConstraint, getExplicitForeignKeyName
-
从接口继承的方法 org.hibernate.boot.model.source.spi.RelationalValueSourceContainer
getRelationalValueSources
-
-
-
-
方法详细资料
-
getReferencedPropertyName
String getReferencedPropertyName()
-
isCascadeDeleteEnabled
boolean isCascadeDeleteEnabled()
从接口复制的说明:ForeignKeyContributingSourceIs "cascade delete" enabled for the foreign key? In other words, if a record in the parent (referenced) table is deleted, should the corresponding records in the child table automatically be deleted?- 指定者:
isCascadeDeleteEnabled在接口中ForeignKeyContributingSource- 返回:
true, if the cascade delete is enabled;false, otherwise.
-
-