Uses of Class
org.hibernate.query.sqm.function.SqmFunctionRegistry
-
Packages that use SqmFunctionRegistry Package Description org.hibernate.boot.internal org.hibernate.boot.model Package defining Hibernate's boot-time metamodel, which is an understanding of the application's domain model (its entities, attributes, etc.) and the mapping of those "domain model parts" to the database.org.hibernate.boot.spi org.hibernate.mapping This package defines the Hibernate configuration-time mapping model.org.hibernate.metamodel.mapping.internal org.hibernate.query.spi org.hibernate.query.sqm.function org.hibernate.query.sqm.produce.function Package defining support forSqmFunctionDescriptor
handling.org.hibernate.sql This package defines helper classes for rendering SQL fragments and SQL statements. -
-
Uses of SqmFunctionRegistry in org.hibernate.boot.internal
Methods in org.hibernate.boot.internal that return SqmFunctionRegistry Modifier and Type Method Description SqmFunctionRegistry
SessionFactoryOptionsBuilder. getCustomSqmFunctionRegistry()
Methods in org.hibernate.boot.internal with parameters of type SqmFunctionRegistry Modifier and Type Method Description void
SessionFactoryOptionsBuilder. applySqmFunctionRegistry(SqmFunctionRegistry sqmFunctionRegistry)
-
Uses of SqmFunctionRegistry in org.hibernate.boot.model
Methods in org.hibernate.boot.model that return SqmFunctionRegistry Modifier and Type Method Description SqmFunctionRegistry
FunctionContributions. getFunctionRegistry()
The registry into which the contributions should be made. -
Uses of SqmFunctionRegistry in org.hibernate.boot.spi
Methods in org.hibernate.boot.spi that return SqmFunctionRegistry Modifier and Type Method Description SqmFunctionRegistry
AbstractDelegatingSessionFactoryOptions. getCustomSqmFunctionRegistry()
-
Uses of SqmFunctionRegistry in org.hibernate.mapping
Methods in org.hibernate.mapping with parameters of type SqmFunctionRegistry Modifier and Type Method Description String
Column. getTemplate(Dialect dialect, TypeConfiguration typeConfiguration, SqmFunctionRegistry functionRegistry)
String
Formula. getTemplate(Dialect dialect, TypeConfiguration typeConfiguration, SqmFunctionRegistry functionRegistry)
String
Selectable. getTemplate(Dialect dialect, TypeConfiguration typeConfiguration, SqmFunctionRegistry functionRegistry)
-
Uses of SqmFunctionRegistry in org.hibernate.metamodel.mapping.internal
Methods in org.hibernate.metamodel.mapping.internal that return SqmFunctionRegistry Modifier and Type Method Description SqmFunctionRegistry
MappingModelCreationProcess. getSqmFunctionRegistry()
Methods in org.hibernate.metamodel.mapping.internal with parameters of type SqmFunctionRegistry Modifier and Type Method Description static SelectableMapping
SelectableMappingImpl. from(String containingTableExpression, Selectable selectable, JdbcMapping jdbcMapping, TypeConfiguration typeConfiguration, boolean insertable, boolean updateable, boolean partitioned, Dialect dialect, SqmFunctionRegistry sqmFunctionRegistry)
static SelectableMapping
SelectableMappingImpl. from(String containingTableExpression, Selectable selectable, SelectablePath parentPath, String selectableName, JdbcMapping jdbcMapping, TypeConfiguration typeConfiguration, boolean insertable, boolean updateable, boolean partitioned, Dialect dialect, SqmFunctionRegistry sqmFunctionRegistry)
static SelectableMapping
SelectableMappingImpl. from(String containingTableExpression, Selectable selectable, SelectablePath parentPath, JdbcMapping jdbcMapping, TypeConfiguration typeConfiguration, boolean insertable, boolean updateable, boolean partitioned, Dialect dialect, SqmFunctionRegistry sqmFunctionRegistry)
static SelectableMappings
SelectableMappingsImpl. from(String containingTableExpression, Value value, int[] propertyOrder, Mapping mapping, TypeConfiguration typeConfiguration, boolean[] insertable, boolean[] updateable, Dialect dialect, SqmFunctionRegistry sqmFunctionRegistry)
static void
MappingModelCreationProcess. process(Map<String,EntityPersister> entityPersisterMap, SqmFunctionRegistry functionRegistry, RuntimeModelCreationContext creationContext)
Triggers creation of the mapping model -
Uses of SqmFunctionRegistry in org.hibernate.query.spi
Methods in org.hibernate.query.spi that return SqmFunctionRegistry Modifier and Type Method Description SqmFunctionRegistry
QueryEngineOptions. getCustomSqmFunctionRegistry()
User supplied registry of SQM functions available for use in HQL and Criteria Can be used in conjunction withQueryEngineOptions.getCustomSqlFunctionMap()
, but generally one or the other will be used.SqmFunctionRegistry
QueryEngine. getSqmFunctionRegistry()
Constructors in org.hibernate.query.spi with parameters of type SqmFunctionRegistry Constructor Description QueryEngine(String uuid, String name, JpaCompliance jpaCompliance, Supplier<JpaMetamodelImplementor> jpaMetamodelAccess, ValueHandlingMode criteriaValueHandlingMode, int preferredSqlTypeCodeForBoolean, NamedObjectRepository namedObjectRepository, HqlTranslator hqlTranslator, SqmTranslatorFactory sqmTranslatorFactory, NativeQueryInterpreter nativeQueryInterpreter, QueryInterpretationCache interpretationCache, TypeConfiguration typeConfiguration, Dialect dialect, SqmFunctionRegistry userDefinedRegistry, ServiceRegistry serviceRegistry)
-
Uses of SqmFunctionRegistry in org.hibernate.query.sqm.function
Methods in org.hibernate.query.sqm.function with parameters of type SqmFunctionRegistry Modifier and Type Method Description String
SelfRenderingFunctionSqlAstExpression. getTemplate(Dialect dialect, TypeConfiguration typeConfiguration, SqmFunctionRegistry functionRegistry)
void
SqmFunctionRegistry. overlay(SqmFunctionRegistry registryToOverly)
Overlay the functions registered here on top of the incoming registry, potentially overriding its registrations -
Uses of SqmFunctionRegistry in org.hibernate.query.sqm.produce.function
Constructors in org.hibernate.query.sqm.produce.function with parameters of type SqmFunctionRegistry Constructor Description NamedFunctionDescriptorBuilder(SqmFunctionRegistry registry, String registrationKey, FunctionKind functionKind, String functionName)
PatternFunctionDescriptorBuilder(SqmFunctionRegistry registry, String registrationKey, FunctionKind functionKind, String pattern)
-
Uses of SqmFunctionRegistry in org.hibernate.sql
Methods in org.hibernate.sql with parameters of type SqmFunctionRegistry Modifier and Type Method Description static String
Template. renderWhereStringTemplate(String sqlWhereString, String placeholder, Dialect dialect, TypeConfiguration typeConfiguration, SqmFunctionRegistry functionRegistry)
Takes the where condition provided in the mapping attribute and interpolates the alias.static String
Template. renderWhereStringTemplate(String sqlWhereString, Dialect dialect, TypeConfiguration typeConfiguration, SqmFunctionRegistry functionRegistry)
-