Package org.hibernate.boot.model
Interface FunctionContributions
-
- All Known Implementing Classes:
MockSessionFactory
,ProcessorSessionFactory
public interface FunctionContributions
Allows custom function descriptors to be contributed to the eventualSqmFunctionRegistry
, either by aDialect
or by aFunctionContributor
.- See Also:
FunctionContributor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default Dialect
getDialect()
The SQL Dialect.SqmFunctionRegistry
getFunctionRegistry()
The registry into which the contributions should be made.ServiceRegistry
getServiceRegistry()
Access to services.TypeConfiguration
getTypeConfiguration()
Access to type information.
-
-
-
Method Detail
-
getFunctionRegistry
SqmFunctionRegistry getFunctionRegistry()
The registry into which the contributions should be made.
-
getTypeConfiguration
TypeConfiguration getTypeConfiguration()
Access to type information.
-
getServiceRegistry
ServiceRegistry getServiceRegistry()
Access to services.
-
getDialect
default Dialect getDialect()
The SQL Dialect.
-
-