Uses of Class
org.hibernate.boot.model.CustomSql
-
Packages that use CustomSql Package Description org.hibernate.boot.model.source.internal.hbm org.hibernate.boot.model.source.spi org.hibernate.mapping This package defines the Hibernate configuration-time mapping model. -
-
Uses of CustomSql in org.hibernate.boot.model.source.internal.hbm
Methods in org.hibernate.boot.model.source.internal.hbm that return CustomSql Modifier and Type Method Description static CustomSql
Helper. buildCustomSql(JaxbHbmCustomSqlDmlType customSqlElement)
Given a user-specified description of how to perform custom SQL, build theCustomSql
representation.CustomSql
AbstractEntitySourceImpl. getCustomSqlDelete()
CustomSql
AbstractPluralAttributeSourceImpl. getCustomSqlDelete()
CustomSql
AbstractPluralAttributeSourceImpl. getCustomSqlDeleteAll()
CustomSql
AbstractEntitySourceImpl. getCustomSqlInsert()
CustomSql
AbstractPluralAttributeSourceImpl. getCustomSqlInsert()
CustomSql
AbstractEntitySourceImpl. getCustomSqlUpdate()
CustomSql
AbstractPluralAttributeSourceImpl. getCustomSqlUpdate()
-
Uses of CustomSql in org.hibernate.boot.model.source.spi
Methods in org.hibernate.boot.model.source.spi that return CustomSql Modifier and Type Method Description CustomSql
EntitySource. getCustomSqlDelete()
Obtain the custom SQL to be used for deletes for this entityCustomSql
PluralAttributeSource. getCustomSqlDelete()
CustomSql
SecondaryTableSource. getCustomSqlDelete()
Obtain the custom SQL to be used for deletes for this entityCustomSql
PluralAttributeSource. getCustomSqlDeleteAll()
CustomSql
EntitySource. getCustomSqlInsert()
Obtain the custom SQL to be used for inserts for this entityCustomSql
PluralAttributeSource. getCustomSqlInsert()
CustomSql
SecondaryTableSource. getCustomSqlInsert()
Obtain the custom SQL to be used for inserts for this entityCustomSql
EntitySource. getCustomSqlUpdate()
Obtain the custom SQL to be used for updates for this entityCustomSql
PluralAttributeSource. getCustomSqlUpdate()
CustomSql
SecondaryTableSource. getCustomSqlUpdate()
Obtain the custom SQL to be used for updates for this entity -
Uses of CustomSql in org.hibernate.mapping
Methods in org.hibernate.mapping with parameters of type CustomSql Modifier and Type Method Description void
PersistentClass. setCustomSqlDelete(CustomSql customSql)
void
PersistentClass. setCustomSqlInsert(CustomSql customSql)
void
PersistentClass. setCustomSqlUpdate(CustomSql customSql)
-