Package org.hibernate.boot.model.naming
Interface ImplicitBasicColumnNameSource
-
- All Superinterfaces:
ImplicitNameSource
- All Known Subinterfaces:
PluralAttributeElementSourceBasic,SingularAttributeSourceBasic,VersionAttributeSource
public interface ImplicitBasicColumnNameSource extends ImplicitNameSource
Context for determining the implicit name related to basic values.- See Also:
Column
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AttributePathgetAttributePath()Access to the AttributePath for the basic valuebooleanisCollectionElement()Is the basic column the "element column" for a collection?-
Methods inherited from interface org.hibernate.boot.model.naming.ImplicitNameSource
getBuildingContext
-
-
-
-
Method Detail
-
getAttributePath
AttributePath getAttributePath()
Access to the AttributePath for the basic value- Returns:
- The AttributePath for the basic value
-
isCollectionElement
boolean isCollectionElement()
Is the basic column the "element column" for a collection? Historical handling for these inhbm.xmlbinding was to simply name the column "elt".- Returns:
trueif the column being named is the collection element column;falseotherwise.
-
-