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. 
 

Uses of SQLFunction in org.hibernate.dialect
 

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 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.