Package org.hibernate.boot.model
Interface FunctionContributions
-
- All Known Implementing Classes:
DialectFeatureChecks.FakeFunctionContributions,MockSessionFactory,ProcessorSessionFactory
public interface FunctionContributionsAllows custom function descriptors to be contributed to the eventualSqmFunctionRegistry, either by aDialector by aFunctionContributor.- See Also:
FunctionContributor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default DialectgetDialect()The SQL Dialect.SqmFunctionRegistrygetFunctionRegistry()The registry into which the contributions should be made.ServiceRegistrygetServiceRegistry()Access to services.TypeConfigurationgetTypeConfiguration()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.
-
-