Uses of Interface
org.hibernate.query.sqm.tree.select.SqmSelectableNode
-
Packages that use SqmSelectableNode Package Description org.hibernate.dialect.function Contains implementations ofSqmFunctionDescriptor
describing a range of relatively-sophisticated SQL functions available in various dialects.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.query.derived org.hibernate.query.hql.internal Implementation of the SPIs for HQL support.org.hibernate.query.sqm.function Package defining support for HQL, including JPQL as a subset of HQL.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.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. -
-
Uses of SqmSelectableNode in org.hibernate.dialect.function
Classes in org.hibernate.dialect.function that implement SqmSelectableNode Modifier and Type Class Description protected static class
FormatFunction.FormatSqmFunction<T>
protected class
InverseDistributionFunction.SelfRenderingInverseDistributionFunction<T>
-
Uses of SqmSelectableNode in org.hibernate.metamodel.model.domain
Subinterfaces of SqmSelectableNode in org.hibernate.metamodel.model.domain Modifier and Type Interface Description interface
DiscriminatorSqmPath<T>
Commonality between entity and any discriminators -
Uses of SqmSelectableNode in org.hibernate.metamodel.model.domain.internal
Classes in org.hibernate.metamodel.model.domain.internal that implement SqmSelectableNode Modifier and Type Class Description class
AnyDiscriminatorSqmPath<T>
class
EntityDiscriminatorSqmPath<T>
SqmPath
specialization for an entity discriminator -
Uses of SqmSelectableNode in org.hibernate.query.derived
Methods in org.hibernate.query.derived that return SqmSelectableNode Modifier and Type Method Description SqmSelectableNode<?>
AnonymousTupleType. getSelectableNode(int index)
Constructors in org.hibernate.query.derived with parameters of type SqmSelectableNode Constructor Description AnonymousTupleType(SqmSelectableNode<?>[] components)
-
Uses of SqmSelectableNode in org.hibernate.query.hql.internal
Classes in org.hibernate.query.hql.internal that implement SqmSelectableNode Modifier and Type Class Description class
FullyQualifiedReflectivePathTerminal
-
Uses of SqmSelectableNode in org.hibernate.query.sqm.function
Classes in org.hibernate.query.sqm.function that implement SqmSelectableNode Modifier and Type Class Description class
SelfRenderingSqmAggregateFunction<T>
class
SelfRenderingSqmFunction<T>
class
SelfRenderingSqmOrderedSetAggregateFunction<T>
class
SelfRenderingSqmWindowFunction<T>
-
Uses of SqmSelectableNode in org.hibernate.query.sqm.tree.domain
Subinterfaces of SqmSelectableNode in org.hibernate.query.sqm.tree.domain Modifier and Type Interface Description interface
SqmCorrelation<O,T>
Specialization ofSqmFrom
for sub-query correlationsinterface
SqmPath<T>
Models a reference to a part of the application's domain model as part of an SQM tree.interface
SqmPathWrapper<W,T>
SqmPath specialization for an SqmPath that wraps another SqmPathinterface
SqmSimplePath<T>
interface
SqmTreatedPath<T,S extends T>
Classes in org.hibernate.query.sqm.tree.domain that implement SqmSelectableNode Modifier and Type Class Description class
AbstractSqmAttributeJoin<O,T>
Models a join based on a mapped attribute reference.class
AbstractSqmFrom<O,T>
Convenience base class for SqmFrom implementationsclass
AbstractSqmJoin<O,T>
class
AbstractSqmPath<T>
class
AbstractSqmPluralJoin<O,C,E>
class
AbstractSqmQualifiedJoin<O,T>
class
AbstractSqmSimplePath<T>
class
AbstractSqmSpecificPluralPartPath<T>
class
NonAggregatedCompositeSimplePath<T>
class
SqmAnyValuedSimplePath<T>
class
SqmBagJoin<O,E>
class
SqmBasicValuedSimplePath<T>
class
SqmCorrelatedBagJoin<O,T>
class
SqmCorrelatedCrossJoin<T>
class
SqmCorrelatedEntityJoin<T>
class
SqmCorrelatedListJoin<O,T>
class
SqmCorrelatedMapJoin<O,K,V>
class
SqmCorrelatedPluralPartJoin<O,T>
class
SqmCorrelatedRoot<T>
class
SqmCorrelatedRootJoin<T>
class
SqmCorrelatedSetJoin<O,T>
class
SqmCorrelatedSingularJoin<O,T>
class
SqmCteRoot<T>
class
SqmDerivedRoot<T>
class
SqmElementAggregateFunction<T>
class
SqmEmbeddedValuedSimplePath<T>
class
SqmEntityValuedSimplePath<T>
class
SqmFkExpression<T>
Reference to the key-side (as opposed to the target-side) of the foreign-key of a to-one association.class
SqmIndexAggregateFunction<T>
class
SqmIndexedCollectionAccessPath<T>
class
SqmListJoin<O,E>
class
SqmMapEntryReference<K,V>
Represents the reference to a Map attribute'sMap.Entry
entries in a select clauseclass
SqmMapJoin<O,K,V>
class
SqmPluralPartJoin<O,T>
class
SqmPluralValuedSimplePath<E>
An SqmPath for plural attribute pathsclass
SqmSetJoin<O,E>
class
SqmSingularJoin<O,T>
class
SqmTreatedBagJoin<O,T,S extends T>
class
SqmTreatedCrossJoin<T,S extends T>
class
SqmTreatedEntityJoin<T,S extends T>
class
SqmTreatedListJoin<O,T,S extends T>
class
SqmTreatedMapJoin<O,K,V,S extends V>
class
SqmTreatedPluralPartJoin<O,T,S extends T>
class
SqmTreatedRoot<T,S extends T>
class
SqmTreatedSetJoin<O,T,S extends T>
class
SqmTreatedSimplePath<T,S extends T>
class
SqmTreatedSingularJoin<O,T,S extends T>
Method parameters in org.hibernate.query.sqm.tree.domain with type arguments of type SqmSelectableNode Modifier and Type Method Description void
SqmMapEntryReference. visitSubSelectableNodes(Consumer<SqmSelectableNode<?>> jpaSelectionConsumer)
-
Uses of SqmSelectableNode in org.hibernate.query.sqm.tree.expression
Subinterfaces of SqmSelectableNode in org.hibernate.query.sqm.tree.expression Modifier and Type Interface Description interface
SqmAggregateFunction<T>
A SQM aggregate function.interface
SqmExpression<T>
The base contract for any kind of expression node in the SQM tree.interface
SqmOrderedSetAggregateFunction<T>
A SQM ordered set-aggregate function.interface
SqmParameter<T>
Models a parameter expression declared in the query.interface
SqmWindowFunction<T>
A SQM window function.Classes in org.hibernate.query.sqm.tree.expression that implement SqmSelectableNode Modifier and Type Class Description class
AbstractSqmExpression<T>
class
AbstractSqmParameter<T>
Common support for SqmParameter implsclass
JpaCriteriaParameter<T>
JpaParameterExpression
created via JPACriteriaBuilder
.class
SqmAliasedNodeRef
Models a reference to aSqmAliasedNode
used in the order-by or group-by clause by either position or alias, though the reference is normalized here to a positional refclass
SqmAny<T>
class
SqmAnyDiscriminatorValue<T>
class
SqmBinaryArithmetic<T>
class
SqmByUnit
class
SqmCaseSearched<R>
class
SqmCaseSimple<T,R>
class
SqmCoalesce<T>
class
SqmCollation
class
SqmCollectionSize
Represents theSIZE()
function.class
SqmEnumLiteral<E extends Enum<E>>
Specialized SQM literal defined by an enum reference.class
SqmEvery<T>
class
SqmFieldLiteral<T>
class
SqmFormat
Effectively a query-literal but we want to handle it specially in the SQM to SQL AST conversionclass
SqmFunction<T>
A SQM functionclass
SqmHqlNumericLiteral<N extends Number>
Used to model numeric literals found in HQL queries.class
SqmJpaCriteriaParameterWrapper<T>
Acts as the per-use wrapper for a JpaCriteriaParameter (CriteriaBuilder.parameter(java.lang.Class<T>)
).class
SqmLiteral<T>
Represents a literal value in the sqm, e.g. 1 'some string' some.JavaClass.CONSTANT some.JavaEnum.VALUE etcclass
SqmLiteralEntityType<T>
Represents an reference to an entity type as a literal.class
SqmLiteralNull<T>
class
SqmModifiedSubQueryExpression<T>
Represents aSqmModifiedSubQueryExpression.Modifier.ALL
,SqmModifiedSubQueryExpression.Modifier.ANY
,SqmModifiedSubQueryExpression.Modifier.SOME
modifier applied to a subquery as part of a comparison.class
SqmNamedParameter<T>
Represents a named query parameter in the SQM tree.class
SqmOver<T>
class
SqmOverflow<T>
class
SqmParameterizedEntityType<T>
Entity type expression based on a parameter - `TYPE( :someParam )`class
SqmPositionalParameter<T>
Models a positional parameter expressionclass
SqmSelfRenderingExpression<T>
class
SqmStar
class
SqmSummarization<T>
class
SqmToDuration<T>
class
SqmTuple<T>
A tuple constructor, that is, a list of expressions wrapped in parentheses, for example,(x, y, z)
.class
SqmUnaryOperation<T>
class
ValueBindJpaCriteriaParameter<T>
It is a JpaCriteriaParameter created from a value when ValueHandlingMode is equal to BINDMethod parameters in org.hibernate.query.sqm.tree.expression with type arguments of type SqmSelectableNode Modifier and Type Method Description default void
SqmExpression. visitSubSelectableNodes(Consumer<SqmSelectableNode<?>> jpaSelectionConsumer)
void
SqmJpaCriteriaParameterWrapper. visitSubSelectableNodes(Consumer<SqmSelectableNode<?>> jpaSelectionConsumer)
-
Uses of SqmSelectableNode in org.hibernate.query.sqm.tree.from
Subinterfaces of SqmSelectableNode in org.hibernate.query.sqm.tree.from Modifier and Type Interface Description interface
SqmAttributeJoin<O,T>
Models a join based on a mapped attribute reference.interface
SqmFrom<O,T>
Models a Bindable's inclusion in theFROM
clause.interface
SqmJoin<O,T>
interface
SqmQualifiedJoin<O,T>
Common contract for qualified/restricted/predicated joins.Classes in org.hibernate.query.sqm.tree.from that implement SqmSelectableNode Modifier and Type Class Description class
SqmCrossJoin<T>
class
SqmCteJoin<T>
class
SqmDerivedJoin<T>
class
SqmEntityJoin<T>
class
SqmRoot<E>
-
Uses of SqmSelectableNode in org.hibernate.query.sqm.tree.jpa
Classes in org.hibernate.query.sqm.tree.jpa that implement SqmSelectableNode Modifier and Type Class Description class
AbstractJpaSelection<T>
Base support forJpaSelection
impls. -
Uses of SqmSelectableNode in org.hibernate.query.sqm.tree.predicate
Subinterfaces of SqmSelectableNode in org.hibernate.query.sqm.tree.predicate Modifier and Type Interface Description interface
SqmInPredicate<T>
interface
SqmNegatablePredicate
Contract for predicates that have a negated form, e.g.interface
SqmPredicate
Classes in org.hibernate.query.sqm.tree.predicate that implement SqmSelectableNode Modifier and Type Class Description class
AbstractNegatableSqmPredicate
class
AbstractSqmPredicate
class
SqmBetweenPredicate
class
SqmBooleanExpressionPredicate
Represents an expression whose type is boolean, and can therefore be used as a predicate.class
SqmComparisonPredicate
class
SqmEmptinessPredicate
class
SqmExistsPredicate
class
SqmGroupedPredicate
class
SqmInListPredicate<T>
class
SqmInSubQueryPredicate<T>
class
SqmJunctionPredicate
class
SqmLikePredicate
class
SqmMemberOfPredicate
class
SqmNegatedPredicate
class
SqmNullnessPredicate
class
SqmTruthnessPredicate
-
Uses of SqmSelectableNode in org.hibernate.query.sqm.tree.select
Classes in org.hibernate.query.sqm.tree.select that implement SqmSelectableNode Modifier and Type Class Description class
SqmDynamicInstantiation<T>
Represents a dynamic instantiation (select new XYZ(...) ...
) as part of the SQM.class
SqmJpaCompoundSelection<T>
class
SqmSubQuery<T>
Methods in org.hibernate.query.sqm.tree.select that return SqmSelectableNode Modifier and Type Method Description SqmSelectableNode<T>
SqmSelectableNode. copy(SqmCopyContext context)
SqmSelectableNode<T>
SqmAliasedNode. getSelectableNode()
SqmSelectableNode<T>
SqmDynamicInstantiationArgument. getSelectableNode()
SqmSelectableNode<T>
SqmSelection. getSelectableNode()
Methods in org.hibernate.query.sqm.tree.select that return types with arguments of type SqmSelectableNode Modifier and Type Method Description List<SqmSelectableNode<?>>
SqmDynamicInstantiation. getSelectionItems()
List<SqmSelectableNode<?>>
SqmJpaCompoundSelection. getSelectionItems()
List<SqmSelectableNode<?>>
SqmSelectClause. getSelectionItems()
Methods in org.hibernate.query.sqm.tree.select with parameters of type SqmSelectableNode Modifier and Type Method Description void
SqmSelectClause. setSelection(SqmSelectableNode<?> selectableNode)
Method parameters in org.hibernate.query.sqm.tree.select with type arguments of type SqmSelectableNode Modifier and Type Method Description void
SqmDynamicInstantiation. visitSubSelectableNodes(Consumer<SqmSelectableNode<?>> consumer)
void
SqmJpaCompoundSelection. visitSubSelectableNodes(Consumer<SqmSelectableNode<?>> jpaSelectionConsumer)
void
SqmSelectableNode. visitSubSelectableNodes(Consumer<SqmSelectableNode<?>> jpaSelectionConsumer)
Visit each of this selectable's direct sub-selectables - used to support JPA'sSelection
model (which is really a "selectable", just poorly named and poorly definedConstructors in org.hibernate.query.sqm.tree.select with parameters of type SqmSelectableNode Constructor Description SqmDynamicInstantiationArgument(SqmSelectableNode<T> selectableNode, String alias, NodeBuilder nodeBuilder)
SqmSelection(SqmSelectableNode<T> selectableNode, String alias, NodeBuilder nodeBuilder)
SqmSelection(SqmSelectableNode<T> selectableNode, NodeBuilder nodeBuilder)
Constructor parameters in org.hibernate.query.sqm.tree.select with type arguments of type SqmSelectableNode Constructor Description SqmJpaCompoundSelection(List<SqmSelectableNode<?>> selectableNodes, JavaType<T> javaType, NodeBuilder criteriaBuilder)
-