Uses of Class
org.hibernate.query.sqm.function.SqmFunctionRegistry
-
Packages that use SqmFunctionRegistry Package Description org.hibernate.boot.internal org.hibernate.boot.model This package defines the boot-time metamodel, which is an interpretation of the domain model (entity classes, embeddable classes, and attributes) and the mapping of these "domain model parts" to the database.org.hibernate.boot.spi A range of SPIs allowing integration with—and customization of—the process of building metadata.org.hibernate.dialect.function Contains implementations ofSqmFunctionDescriptordescribing a range of relatively-sophisticated SQL functions available in various dialects.org.hibernate.mapping This package defines the Hibernate configuration-time mapping model.org.hibernate.metamodel.mapping.internal org.hibernate.metamodel.spi An SPI supporting custom instantiation of entity instances and embeddable objects.org.hibernate.processor.validation Validation for HQL queries.org.hibernate.query.internal org.hibernate.query.spi Contains a range of internal abstractions for dealing with query execution, query plans, query options, and query parameters.org.hibernate.query.sqm.function An SPI for defining, registering, and rendering functions in HQL.org.hibernate.query.sqm.produce.function Package defining support forSqmFunctionDescriptorhandling.org.hibernate.sql This package contains helper classes for rendering SQL fragments and SQL statements.org.hibernate.testing.boot org.hibernate.testing.orm.junit -
-
Uses of SqmFunctionRegistry in org.hibernate.boot.internal
Methods in org.hibernate.boot.internal that return SqmFunctionRegistry Modifier and Type Method Description SqmFunctionRegistrySessionFactoryOptionsBuilder. getCustomSqmFunctionRegistry()SqmFunctionRegistryBootstrapContextImpl. getFunctionRegistry()SqmFunctionRegistryInFlightMetadataCollectorImpl. getFunctionRegistry()SqmFunctionRegistryMetadataImpl. getFunctionRegistry()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()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 SqmFunctionRegistryAbstractDelegatingSessionFactoryOptions. getCustomSqmFunctionRegistry()SqmFunctionRegistryAbstractDelegatingMetadata. getFunctionRegistry()SqmFunctionRegistryBootstrapContext. getFunctionRegistry()TheSqmFunctionRegistrybelonging to thisBootstrapContext.SqmFunctionRegistryMetadataImplementor. getFunctionRegistry()Access to theSqmFunctionRegistrybelonging to theBootstrapContext -
Uses of SqmFunctionRegistry in org.hibernate.dialect.function
Constructors in org.hibernate.dialect.function with parameters of type SqmFunctionRegistry Constructor Description DynamicDispatchFunction(SqmFunctionRegistry functionRegistry, String... functionNames) -
Uses of SqmFunctionRegistry in org.hibernate.mapping
Methods in org.hibernate.mapping with parameters of type SqmFunctionRegistry Modifier and Type Method Description voidPersistentClass. assignCheckConstraintsToTable(Dialect dialect, TypeConfiguration types, SqmFunctionRegistry functions)StringColumn. getTemplate(Dialect dialect, TypeConfiguration typeConfiguration, SqmFunctionRegistry registry)StringFormula. getTemplate(Dialect dialect, TypeConfiguration typeConfiguration, SqmFunctionRegistry registry)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, @Nullable SelectablePath parentPath, JdbcMapping jdbcMapping, TypeConfiguration typeConfiguration, boolean insertable, boolean updateable, boolean partitioned, boolean forceNotNullable, Dialect dialect, SqmFunctionRegistry sqmFunctionRegistry, RuntimeModelCreationContext creationContext)static SelectableMappingSelectableMappingImpl. from(String containingTableExpression, Selectable selectable, @Nullable SelectablePath parentPath, JdbcMapping jdbcMapping, TypeConfiguration typeConfiguration, boolean insertable, boolean updateable, boolean partitioned, Dialect dialect, SqmFunctionRegistry sqmFunctionRegistry, RuntimeModelCreationContext creationContext)static SelectableMappingSelectableMappingImpl. from(String containingTableExpression, Selectable selectable, JdbcMapping jdbcMapping, TypeConfiguration typeConfiguration, boolean insertable, boolean updateable, boolean partitioned, boolean forceNotNullable, Dialect dialect, SqmFunctionRegistry sqmFunctionRegistry, RuntimeModelCreationContext creationContext)static SelectableMappingSelectableMappingImpl. from(String containingTableExpression, Selectable selectable, JdbcMapping jdbcMapping, TypeConfiguration typeConfiguration, boolean insertable, boolean updateable, boolean partitioned, Dialect dialect, SqmFunctionRegistry sqmFunctionRegistry, RuntimeModelCreationContext creationContext)static SelectableMappingsSelectableMappingsImpl. from(String containingTableExpression, Value value, int[] propertyOrder, @Nullable SelectablePath parentSelectablePath, Mapping mapping, TypeConfiguration typeConfiguration, boolean[] insertable, boolean[] updateable, Dialect dialect, SqmFunctionRegistry sqmFunctionRegistry, RuntimeModelCreationContext creationContext)static SelectableMappingsSelectableMappingsImpl. from(String containingTableExpression, Value value, int[] propertyOrder, Mapping mapping, TypeConfiguration typeConfiguration, boolean[] insertable, boolean[] updateable, Dialect dialect, SqmFunctionRegistry sqmFunctionRegistry, RuntimeModelCreationContext creationContext) -
Uses of SqmFunctionRegistry in org.hibernate.metamodel.spi
Methods in org.hibernate.metamodel.spi that return SqmFunctionRegistry Modifier and Type Method Description SqmFunctionRegistryRuntimeModelCreationContext. getFunctionRegistry() -
Uses of SqmFunctionRegistry in org.hibernate.processor.validation
Methods in org.hibernate.processor.validation that return SqmFunctionRegistry Modifier and Type Method Description SqmFunctionRegistryMockSessionFactory. getFunctionRegistry()SqmFunctionRegistryMockSessionFactory. getSqmFunctionRegistry() -
Uses of SqmFunctionRegistry in org.hibernate.query.internal
Methods in org.hibernate.query.internal that return SqmFunctionRegistry Modifier and Type Method Description SqmFunctionRegistryQueryEngineImpl. getSqmFunctionRegistry() -
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 CriteriaSqmFunctionRegistryQueryEngine. getSqmFunctionRegistry() -
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 registry)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 List<String>Template. collectColumnNames(String sql, Dialect dialect, TypeConfiguration typeConfiguration, SqmFunctionRegistry functionRegistry)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) -
Uses of SqmFunctionRegistry in org.hibernate.testing.boot
Methods in org.hibernate.testing.boot that return SqmFunctionRegistry Modifier and Type Method Description SqmFunctionRegistryBootstrapContextImpl. getFunctionRegistry() -
Uses of SqmFunctionRegistry in org.hibernate.testing.orm.junit
Methods in org.hibernate.testing.orm.junit that return SqmFunctionRegistry Modifier and Type Method Description SqmFunctionRegistryDialectFeatureChecks.FakeFunctionContributions. getFunctionRegistry()SqmFunctionRegistryDialectFeatureChecks.FakeMetadataBuildingContext. getFunctionRegistry()Constructors in org.hibernate.testing.orm.junit with parameters of type SqmFunctionRegistry Constructor Description FakeFunctionContributions(Dialect dialect, TypeConfiguration typeConfiguration, SqmFunctionRegistry functionRegistry)FakeMetadataBuildingContext(TypeConfiguration typeConfiguration, SqmFunctionRegistry functionRegistry)
-