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 ofRelationalValueSource
references. 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. SeeRelationalValueSource
for additional details.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<RelationalValueSource>
getRelationalValueSources()
Obtain the containedRelationalValueSource
references.-
Methods inherited from interface org.hibernate.boot.model.source.spi.ColumnBindingDefaults
areValuesIncludedInInsertByDefault, areValuesIncludedInUpdateByDefault, areValuesNullableByDefault
-
-
-
-
Method Detail
-
getRelationalValueSources
java.util.List<RelationalValueSource> getRelationalValueSources()
Obtain the containedRelationalValueSource
references.- Returns:
- The contained
RelationalValueSource
references.
-
-