Interface RelationalValueSourceContainer
-
- All Superinterfaces:
ColumnBindingDefaults
- All Known Subinterfaces:
PluralAttributeElementSourceBasic,PluralAttributeElementSourceManyToMany,PluralAttributeKeySource,PluralAttributeMapKeyManyToManySource,PluralAttributeMapKeySourceBasic,PluralAttributeSequentialIndexSource,SingularAttributeSourceBasic,SingularAttributeSourceManyToOne,VersionAttributeSource
public interface RelationalValueSourceContainer extends ColumnBindingDefaults
Contract for a container ofRelationalValueSourcereferences. Multiple types of things operate as sources of "relational value" information; some examples include:- id attribute(s) mappings
- basic attribute mappings
- composite attribute mappings
- plural attribute mappings
- etc
getRelationalValueSources(), it also defines contextual information for those sources in terms of default values. SeeRelationalValueSourcefor additional details.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<RelationalValueSource>getRelationalValueSources()Obtain the containedRelationalValueSourcereferences.-
Methods inherited from interface org.hibernate.boot.model.source.spi.ColumnBindingDefaults
areValuesIncludedInInsertByDefault, areValuesIncludedInUpdateByDefault, areValuesNullableByDefault
-
-
-
-
Method Detail
-
getRelationalValueSources
java.util.List<RelationalValueSource> getRelationalValueSources()
Obtain the containedRelationalValueSourcereferences.- Returns:
- The contained
RelationalValueSourcereferences.
-
-