Uses of Interface
org.hibernate.dialect.function.SQLFunction

Packages that use SQLFunction
org.hibernate.dialect This package abstracts the SQL dialect of the underlying database. 
org.hibernate.dialect.function A framework for defining database-specific SQL functions that are available via the dialect. 
org.hibernate.hql.ast.tree   
org.hibernate.hql.ast.util   
 

Uses of SQLFunction in org.hibernate.dialect
 

Classes in org.hibernate.dialect that implement SQLFunction
static class SQLServerDialect.TrimFunction
          A SQLServer-specific version of the ANSI-SQL trim function as SQLServer does not support such a thing.
 

Methods in org.hibernate.dialect with parameters of type SQLFunction
protected  void Dialect.registerFunction(String name, SQLFunction function)
           
 

Uses of SQLFunction in org.hibernate.dialect.function
 

Classes in org.hibernate.dialect.function that implement SQLFunction
 class CastFunction
          ANSI-SQL style cast(foo as type) where the type is a Hibernate type
 class CharIndexFunction
          Emulation of locate() on Sybase
 class NoArgSQLFunction
          A function which takes no arguments
 class NvlFunction
          Emulation of coalesce() on Oracle, using multiple nvl() calls
 class PositionSubstringFunction
          Emulation of locate() on PostgreSQL
 class SQLFunctionTemplate
          Represents HQL functions that can have different representations in different SQL dialects.
 class StandardSQLFunction
          Provides a standard implementation that supports the majority of the HQL functions that are translated to SQL.
 class VarArgsSQLFunction
          Support for slightly more general templating than StandardSQLFunction, with an unlimited number of arguments.
 

Uses of SQLFunction in org.hibernate.hql.ast.tree
 

Methods in org.hibernate.hql.ast.tree that return SQLFunction
 SQLFunction MethodNode.getSQLFunction()
           
 

Uses of SQLFunction in org.hibernate.hql.ast.util
 

Methods in org.hibernate.hql.ast.util that return SQLFunction
 SQLFunction SessionFactoryHelper.findSQLFunction(String functionName)
          Locate a registered sql function by name.