Uses of Package
org.hibernate.query.sqm
-
Packages that use org.hibernate.query.sqm Package Description org.hibernate.dialect This package abstracts over the multifarious dialects of SQL understood by the databases supported by Hibernate.org.hibernate.internal An internal package containing implementations of central Hibernate APIs, mostly defined inorg.hibernate
.org.hibernate.metamodel This package defines an API for accessing the runtime metamodel describing persistent entities in Java and their mappings to the relational database schema.org.hibernate.metamodel.mapping Defines the runtime mapping metamodel, which describes the mapping of the application's domain model parts (entities, attributes) to relational database objects (tables, columns).org.hibernate.metamodel.mapping.internal org.hibernate.metamodel.model.domain Defines the runtime domain metamodel, which describes the Java aspect of the application's domain model parts (entities, attributes).org.hibernate.metamodel.model.domain.internal Implementation of the SPI for the runtime domain metamodel.org.hibernate.persister.entity This package abstracts persistence mechanisms for entities.org.hibernate.processor.validation Validation for HQL queries.org.hibernate.query Everything related to HQL/JPQL, native SQL, and criteria queries.org.hibernate.query.criteria The JPA-standard criteria query API defines all the operations needed express any query written in standard JPQL.org.hibernate.query.criteria.internal org.hibernate.query.criteria.spi SPI for extendingHibernateCriteriaBuilder
with additional functionality by registering aService
.org.hibernate.query.derived org.hibernate.query.hql.internal Implementation of the SPIs for HQL support.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 This package defines a semantic model of HQL queries.org.hibernate.query.sqm.function An SPI for defining, registering, and rendering functions in HQL.org.hibernate.query.sqm.internal Package for the SQM-backed Query implementation detailsorg.hibernate.query.sqm.mutation.internal org.hibernate.query.sqm.spi SPI-level SQM contractsorg.hibernate.query.sqm.sql Package for the translation of SQM into SQL ASTorg.hibernate.query.sqm.sql.internal org.hibernate.query.sqm.tree This package contains the classes that make up the SQM tree nodes.org.hibernate.query.sqm.tree.cte Nodes representing common table expressions (CTE) in the SQM tree.org.hibernate.query.sqm.tree.delete Nodes representingdelete
statements in the SQM tree.org.hibernate.query.sqm.tree.domain Nodes representing path expressions in the SQM tree.org.hibernate.query.sqm.tree.expression Nodes representing expressions in the SQM tree.org.hibernate.query.sqm.tree.from Nodes representing root entities and joins in the SQM tree.org.hibernate.query.sqm.tree.insert Nodes representinginsert
statements in the SQM tree.org.hibernate.query.sqm.tree.jpa org.hibernate.query.sqm.tree.predicate Nodes representing logical predicates in the SQM tree.org.hibernate.query.sqm.tree.select Nodes representingselect
statements in the SQM tree.org.hibernate.query.sqm.tree.update Nodes representingupdate
statements in the SQM tree.org.hibernate.sql.ast.spi Package defining support for creating and consuming a SQL AST.org.hibernate.sql.ast.tree.expression AST nodes representing expressions in a SQL tree.org.hibernate.sql.ast.tree.predicate AST nodes representing logical predicates in a SQL tree.org.hibernate.sql.ast.tree.select AST nodes representingselect
statements in a SQL tree.org.hibernate.sql.results.graph.instantiation.internal org.hibernate.type A HibernateType
is a strategy for mapping a Java property type to a JDBC type or types.org.hibernate.type.descriptor.jdbc Defines handling of almost the full range of standard JDBC-defined SQL data types.org.hibernate.type.internal org.hibernate.type.spi Defines a registry for HibernateType
s. -
Classes in org.hibernate.query.sqm used by org.hibernate.dialect Class Description CastType Defines the set of basic types which should be accepted by thecast()
function on every platform.ComparisonOperator Defines the comparison operators.FetchClauseType The kind of fetch to use for theFETCH
clause.IntervalType The different types of intervals that SQL defines.SemanticQueryWalker Support for walking a Semantic Query Model (SQM) treeTemporalUnit A temporal field type which can occur as an argument toextract()
or as the unit of a duration expression.TrimSpec -
Classes in org.hibernate.query.sqm used by org.hibernate.internal Class Description NodeBuilder Adapts the JPA CriteriaBuilder to generate SQM nodes. -
Classes in org.hibernate.query.sqm used by org.hibernate.metamodel Class Description SqmExpressible Anything in the application domain model that can be used in an SQM query as an expression -
Classes in org.hibernate.query.sqm used by org.hibernate.metamodel.mapping Class Description CastType Defines the set of basic types which should be accepted by thecast()
function on every platform.SqmExpressible Anything in the application domain model that can be used in an SQM query as an expression -
Classes in org.hibernate.query.sqm used by org.hibernate.metamodel.mapping.internal Class Description SqmExpressible Anything in the application domain model that can be used in an SQM query as an expression -
Classes in org.hibernate.query.sqm used by org.hibernate.metamodel.model.domain Class Description SqmExpressible Anything in the application domain model that can be used in an SQM query as an expressionSqmJoinable Specialization for attributes that that can be used in creating SQM joins todo (6.0) : should we define this for entities as well to handle cross joins and "entity joins"? - the result type would need to change to just SqmJoin...SqmPathSource Represents any part of the domain model which can be used to create aSqmPath
node. -
Classes in org.hibernate.query.sqm used by org.hibernate.metamodel.model.domain.internal Class Description NodeBuilder Adapts the JPA CriteriaBuilder to generate SQM nodes.SemanticQueryWalker Support for walking a Semantic Query Model (SQM) treeSqmExpressible Anything in the application domain model that can be used in an SQM query as an expressionSqmJoinable Specialization for attributes that that can be used in creating SQM joins todo (6.0) : should we define this for entities as well to handle cross joins and "entity joins"? - the result type would need to change to just SqmJoin...SqmPathSource Represents any part of the domain model which can be used to create aSqmPath
node. -
Classes in org.hibernate.query.sqm used by org.hibernate.persister.entity Class Description NodeBuilder Adapts the JPA CriteriaBuilder to generate SQM nodes.SqmExpressible Anything in the application domain model that can be used in an SQM query as an expressionSqmPathSource Represents any part of the domain model which can be used to create aSqmPath
node. -
Classes in org.hibernate.query.sqm used by org.hibernate.processor.validation Class Description NodeBuilder Adapts the JPA CriteriaBuilder to generate SQM nodes. -
Classes in org.hibernate.query.sqm used by org.hibernate.query Class Description SqmExpressible Anything in the application domain model that can be used in an SQM query as an expression -
Classes in org.hibernate.query.sqm used by org.hibernate.query.criteria Class Description FetchClauseType The kind of fetch to use for theFETCH
clause.FrameExclusion FrameKind SetOperator The SQL set operators.TemporalUnit A temporal field type which can occur as an argument toextract()
or as the unit of a duration expression. -
Classes in org.hibernate.query.sqm used by org.hibernate.query.criteria.internal Class Description SqmSelectionQuery -
Classes in org.hibernate.query.sqm used by org.hibernate.query.criteria.spi Class Description TemporalUnit A temporal field type which can occur as an argument toextract()
or as the unit of a duration expression. -
Classes in org.hibernate.query.sqm used by org.hibernate.query.derived Class Description SqmExpressible Anything in the application domain model that can be used in an SQM query as an expressionSqmJoinable Specialization for attributes that that can be used in creating SQM joins todo (6.0) : should we define this for entities as well to handle cross joins and "entity joins"? - the result type would need to change to just SqmJoin...SqmPathSource Represents any part of the domain model which can be used to create aSqmPath
node. -
Classes in org.hibernate.query.sqm used by org.hibernate.query.hql.internal Class Description NodeBuilder Adapts the JPA CriteriaBuilder to generate SQM nodes.SemanticQueryWalker Support for walking a Semantic Query Model (SQM) treeSetOperator The SQL set operators.SqmExpressible Anything in the application domain model that can be used in an SQM query as an expressionSqmSelectionQuery -
Classes in org.hibernate.query.sqm used by org.hibernate.query.internal Class Description NodeBuilder Adapts the JPA CriteriaBuilder to generate SQM nodes.SqmExpressible Anything in the application domain model that can be used in an SQM query as an expression -
Classes in org.hibernate.query.sqm used by org.hibernate.query.spi Class Description NodeBuilder Adapts the JPA CriteriaBuilder to generate SQM nodes. -
Classes in org.hibernate.query.sqm used by org.hibernate.query.sqm Class Description BinaryArithmeticOperator Enumeration of standard binary arithmetic operatorsCastType Defines the set of basic types which should be accepted by thecast()
function on every platform.ComparisonOperator Defines the comparison operators.DynamicInstantiationNature Represents the type of instantiation to be performed.FetchClauseType The kind of fetch to use for theFETCH
clause.FrameExclusion FrameKind FrameMode IntervalType The different types of intervals that SQL defines.SetOperator The SQL set operators.SqmExpressible Anything in the application domain model that can be used in an SQM query as an expressionSqmPathSource Represents any part of the domain model which can be used to create aSqmPath
node.SqmQuerySource Informational - used to identify the source of an SQM statement.SqmSelectionQuery StrictJpaComplianceViolation.Type TemporalUnit A temporal field type which can occur as an argument toextract()
or as the unit of a duration expression.TrimSpec UnaryArithmeticOperator UnknownPathException Indicates a failure to resolve an element of a path expression in HQL/JPQL. -
Classes in org.hibernate.query.sqm used by org.hibernate.query.sqm.function Class Description NodeBuilder Adapts the JPA CriteriaBuilder to generate SQM nodes.SqmExpressible Anything in the application domain model that can be used in an SQM query as an expression -
Classes in org.hibernate.query.sqm used by org.hibernate.query.sqm.internal Class Description BinaryArithmeticOperator Enumeration of standard binary arithmetic operatorsNodeBuilder Adapts the JPA CriteriaBuilder to generate SQM nodes.SemanticQueryWalker Support for walking a Semantic Query Model (SQM) treeSqmExpressible Anything in the application domain model that can be used in an SQM query as an expressionSqmPathSource Represents any part of the domain model which can be used to create aSqmPath
node.SqmQuerySource Informational - used to identify the source of an SQM statement.SqmSelectionQuery TemporalUnit A temporal field type which can occur as an argument toextract()
or as the unit of a duration expression.UnaryArithmeticOperator -
Classes in org.hibernate.query.sqm used by org.hibernate.query.sqm.mutation.internal Class Description SemanticQueryWalker Support for walking a Semantic Query Model (SQM) tree -
Classes in org.hibernate.query.sqm used by org.hibernate.query.sqm.spi Class Description NodeBuilder Adapts the JPA CriteriaBuilder to generate SQM nodes.SemanticQueryWalker Support for walking a Semantic Query Model (SQM) treeSqmSelectionQuery -
Classes in org.hibernate.query.sqm used by org.hibernate.query.sqm.sql Class Description SemanticQueryWalker Support for walking a Semantic Query Model (SQM) tree -
Classes in org.hibernate.query.sqm used by org.hibernate.query.sqm.sql.internal Class Description SemanticQueryWalker Support for walking a Semantic Query Model (SQM) tree -
Classes in org.hibernate.query.sqm used by org.hibernate.query.sqm.tree Class Description NodeBuilder Adapts the JPA CriteriaBuilder to generate SQM nodes.SemanticQueryWalker Support for walking a Semantic Query Model (SQM) treeSqmExpressible Anything in the application domain model that can be used in an SQM query as an expressionSqmQuerySource Informational - used to identify the source of an SQM statement. -
Classes in org.hibernate.query.sqm used by org.hibernate.query.sqm.tree.cte Class Description NodeBuilder Adapts the JPA CriteriaBuilder to generate SQM nodes.SemanticQueryWalker Support for walking a Semantic Query Model (SQM) treeSqmExpressible Anything in the application domain model that can be used in an SQM query as an expressionSqmPathSource Represents any part of the domain model which can be used to create aSqmPath
node. -
Classes in org.hibernate.query.sqm used by org.hibernate.query.sqm.tree.delete Class Description NodeBuilder Adapts the JPA CriteriaBuilder to generate SQM nodes.SemanticQueryWalker Support for walking a Semantic Query Model (SQM) treeSqmQuerySource Informational - used to identify the source of an SQM statement. -
Classes in org.hibernate.query.sqm used by org.hibernate.query.sqm.tree.domain Class Description NodeBuilder Adapts the JPA CriteriaBuilder to generate SQM nodes.SemanticQueryWalker Support for walking a Semantic Query Model (SQM) treeSqmExpressible Anything in the application domain model that can be used in an SQM query as an expressionSqmJoinable Specialization for attributes that that can be used in creating SQM joins todo (6.0) : should we define this for entities as well to handle cross joins and "entity joins"? - the result type would need to change to just SqmJoin...SqmPathSource Represents any part of the domain model which can be used to create aSqmPath
node. -
Classes in org.hibernate.query.sqm used by org.hibernate.query.sqm.tree.expression Class Description BinaryArithmeticOperator Enumeration of standard binary arithmetic operatorsFrameExclusion FrameKind FrameMode NodeBuilder Adapts the JPA CriteriaBuilder to generate SQM nodes.SemanticQueryWalker Support for walking a Semantic Query Model (SQM) treeSqmExpressible Anything in the application domain model that can be used in an SQM query as an expressionTemporalUnit A temporal field type which can occur as an argument toextract()
or as the unit of a duration expression.TrimSpec UnaryArithmeticOperator -
Classes in org.hibernate.query.sqm used by org.hibernate.query.sqm.tree.from Class Description NodeBuilder Adapts the JPA CriteriaBuilder to generate SQM nodes.SemanticQueryWalker Support for walking a Semantic Query Model (SQM) treeSqmPathSource Represents any part of the domain model which can be used to create aSqmPath
node. -
Classes in org.hibernate.query.sqm used by org.hibernate.query.sqm.tree.insert Class Description NodeBuilder Adapts the JPA CriteriaBuilder to generate SQM nodes.SemanticQueryWalker Support for walking a Semantic Query Model (SQM) treeSqmQuerySource Informational - used to identify the source of an SQM statement. -
Classes in org.hibernate.query.sqm used by org.hibernate.query.sqm.tree.jpa Class Description NodeBuilder Adapts the JPA CriteriaBuilder to generate SQM nodes.SemanticQueryWalker Support for walking a Semantic Query Model (SQM) treeSqmExpressible Anything in the application domain model that can be used in an SQM query as an expression -
Classes in org.hibernate.query.sqm used by org.hibernate.query.sqm.tree.predicate Class Description ComparisonOperator Defines the comparison operators.NodeBuilder Adapts the JPA CriteriaBuilder to generate SQM nodes.SemanticQueryWalker Support for walking a Semantic Query Model (SQM) treeSqmExpressible Anything in the application domain model that can be used in an SQM query as an expression -
Classes in org.hibernate.query.sqm used by org.hibernate.query.sqm.tree.select Class Description DynamicInstantiationNature Represents the type of instantiation to be performed.FetchClauseType The kind of fetch to use for theFETCH
clause.NodeBuilder Adapts the JPA CriteriaBuilder to generate SQM nodes.SemanticQueryWalker Support for walking a Semantic Query Model (SQM) treeSetOperator The SQL set operators.SqmExpressible Anything in the application domain model that can be used in an SQM query as an expressionSqmQuerySource Informational - used to identify the source of an SQM statement. -
Classes in org.hibernate.query.sqm used by org.hibernate.query.sqm.tree.update Class Description NodeBuilder Adapts the JPA CriteriaBuilder to generate SQM nodes.SemanticQueryWalker Support for walking a Semantic Query Model (SQM) treeSqmQuerySource Informational - used to identify the source of an SQM statement. -
Classes in org.hibernate.query.sqm used by org.hibernate.sql.ast.spi Class Description ComparisonOperator Defines the comparison operators.FetchClauseType The kind of fetch to use for theFETCH
clause.FrameExclusion FrameKind FrameMode -
Classes in org.hibernate.query.sqm used by org.hibernate.sql.ast.tree.expression Class Description BinaryArithmeticOperator Enumeration of standard binary arithmetic operatorsFrameExclusion FrameKind FrameMode TemporalUnit A temporal field type which can occur as an argument toextract()
or as the unit of a duration expression.TrimSpec UnaryArithmeticOperator -
Classes in org.hibernate.query.sqm used by org.hibernate.sql.ast.tree.predicate Class Description ComparisonOperator Defines the comparison operators. -
Classes in org.hibernate.query.sqm used by org.hibernate.sql.ast.tree.select Class Description FetchClauseType The kind of fetch to use for theFETCH
clause.SetOperator The SQL set operators. -
Classes in org.hibernate.query.sqm used by org.hibernate.sql.results.graph.instantiation.internal Class Description DynamicInstantiationNature Represents the type of instantiation to be performed. -
Classes in org.hibernate.query.sqm used by org.hibernate.type Class Description CastType Defines the set of basic types which should be accepted by thecast()
function on every platform.SqmExpressible Anything in the application domain model that can be used in an SQM query as an expression -
Classes in org.hibernate.query.sqm used by org.hibernate.type.descriptor.jdbc Class Description CastType Defines the set of basic types which should be accepted by thecast()
function on every platform. -
Classes in org.hibernate.query.sqm used by org.hibernate.type.internal Class Description CastType Defines the set of basic types which should be accepted by thecast()
function on every platform.SqmExpressible Anything in the application domain model that can be used in an SQM query as an expression -
Classes in org.hibernate.query.sqm used by org.hibernate.type.spi Class Description BinaryArithmeticOperator Enumeration of standard binary arithmetic operatorsIntervalType The different types of intervals that SQL defines.SqmExpressible Anything in the application domain model that can be used in an SQM query as an expression