Uses of Class
org.hibernate.dialect.function.SQLFunctionRegistry

Packages that use SQLFunctionRegistry
org.hibernate.engine This package contains classes that are "shared" by other packages, and implementations of some key algorithms. 
org.hibernate.impl This package contains implementations of the central Hibernate APIs, especially the Hibernate session. 
org.hibernate.mapping This package defines the Hibernate configuration-time metamodel. 
org.hibernate.sql This package defines helper classes for rendering SQL fragments and SQL statements. 
org.hibernate.util Utility classes. 
 

Uses of SQLFunctionRegistry in org.hibernate.engine
 

Methods in org.hibernate.engine that return SQLFunctionRegistry
 SQLFunctionRegistry SessionFactoryImplementor.getSqlFunctionRegistry()
           
 

Uses of SQLFunctionRegistry in org.hibernate.impl
 

Methods in org.hibernate.impl that return SQLFunctionRegistry
 SQLFunctionRegistry SessionFactoryImpl.getSqlFunctionRegistry()
           
 

Uses of SQLFunctionRegistry in org.hibernate.mapping
 

Methods in org.hibernate.mapping with parameters of type SQLFunctionRegistry
 String Selectable.getTemplate(Dialect dialect, SQLFunctionRegistry functionRegistry)
           
 String Formula.getTemplate(Dialect dialect, SQLFunctionRegistry functionRegistry)
           
 String Column.getTemplate(Dialect dialect, SQLFunctionRegistry functionRegistry)
           
 

Uses of SQLFunctionRegistry in org.hibernate.sql
 

Methods in org.hibernate.sql with parameters of type SQLFunctionRegistry
static String Template.renderOrderByStringTemplate(String sqlOrderByString, Dialect dialect, SQLFunctionRegistry functionRegistry)
          Takes order by clause provided in the mapping attribute and interpolates the alias.
static String Template.renderWhereStringTemplate(String sqlWhereString, Dialect dialect, SQLFunctionRegistry functionRegistry)
           
static String Template.renderWhereStringTemplate(String sqlWhereString, String placeholder, Dialect dialect, SQLFunctionRegistry functionRegistry)
          Takes the where condition provided in the mapping attribute and interpolates the alias.
 

Uses of SQLFunctionRegistry in org.hibernate.util
 

Constructors in org.hibernate.util with parameters of type SQLFunctionRegistry
FilterHelper(Map filters, Dialect dialect, SQLFunctionRegistry functionRegistry)
          The map of defined filters.