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 incrementally built understanding of the application's domain model (its entities, attributes, etc).org.hibernate.boot.spi org.hibernate.mapping org.hibernate.metamodel.mapping.internal org.hibernate.query.spi org.hibernate.query.sqm.function org.hibernate.query.sqm.produce.function Package defining support forSqmFunctionDescriptorhandling.org.hibernate.sql -
-
Uses of SqmFunctionRegistry in org.hibernate.boot.internal
Methods in org.hibernate.boot.internal that return SqmFunctionRegistry Modifier and Type Method Description SqmFunctionRegistrySessionFactoryOptionsBuilder. getCustomSqmFunctionRegistry()Methods in org.hibernate.boot.internal with parameters of type SqmFunctionRegistry Modifier and Type Method Description voidSessionFactoryOptionsBuilder. 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 SqmFunctionRegistryFunctionContributions. getFunctionRegistry() -
Uses of SqmFunctionRegistry in org.hibernate.boot.spi
Methods in org.hibernate.boot.spi that return SqmFunctionRegistry Modifier and Type Method Description SqmFunctionRegistryAbstractDelegatingSessionFactoryOptions. getCustomSqmFunctionRegistry() -
Uses of SqmFunctionRegistry in org.hibernate.mapping
Methods in org.hibernate.mapping with parameters of type SqmFunctionRegistry Modifier and Type Method Description StringColumn. getTemplate(Dialect dialect, TypeConfiguration typeConfiguration, SqmFunctionRegistry functionRegistry)StringFormula. getTemplate(Dialect dialect, TypeConfiguration typeConfiguration, SqmFunctionRegistry functionRegistry)StringSelectable. 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 SqmFunctionRegistryMappingModelCreationProcess. getSqmFunctionRegistry()Methods in org.hibernate.metamodel.mapping.internal with parameters of type SqmFunctionRegistry Modifier and Type Method Description static SelectableMappingSelectableMappingImpl. from(String containingTableExpression, Selectable selectable, JdbcMapping jdbcMapping, TypeConfiguration typeConfiguration, Dialect dialect, SqmFunctionRegistry sqmFunctionRegistry)static SelectableMappingsSelectableMappingsImpl. from(String containingTableExpression, Value value, int[] propertyOrder, Mapping mapping, TypeConfiguration typeConfiguration, Dialect dialect, SqmFunctionRegistry sqmFunctionRegistry)static voidMappingModelCreationProcess. 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 SqmFunctionRegistryQueryEngineOptions. 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.SqmFunctionRegistryQueryEngine. 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 StringSelfRenderingFunctionSqlAstExpression. getTemplate(Dialect dialect, TypeConfiguration typeConfiguration, SqmFunctionRegistry functionRegistry)voidSqmFunctionRegistry. 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 StringTemplate. 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 StringTemplate. renderWhereStringTemplate(String sqlWhereString, Dialect dialect, TypeConfiguration typeConfiguration, SqmFunctionRegistry functionRegistry)
-