Uses of Class
org.hibernate.sql.ast.tree.expression.ColumnReference
-
Packages that use ColumnReference Package Description org.hibernate.dialect org.hibernate.query.sqm.mutation.internal org.hibernate.query.sqm.sql Package for the translation of SQM into SQL ASTorg.hibernate.query.sqm.sql.internal org.hibernate.sql.ast Package defining a SQL AST for use in creating and executing various JDBC operationsorg.hibernate.sql.ast.spi Package defining support for creating and consuming SQL ASTorg.hibernate.sql.ast.tree Package defining the SQL AST.org.hibernate.sql.ast.tree.delete org.hibernate.sql.ast.tree.expression Contracts related to expressions in a SQL treeorg.hibernate.sql.ast.tree.from org.hibernate.sql.ast.tree.insert org.hibernate.sql.ast.tree.update -
-
Uses of ColumnReference in org.hibernate.dialect
Methods in org.hibernate.dialect with parameters of type ColumnReference Modifier and Type Method Description void
SybaseASESqlAstTranslator. visitColumnReference(ColumnReference columnReference)
-
Uses of ColumnReference in org.hibernate.query.sqm.mutation.internal
Methods in org.hibernate.query.sqm.mutation.internal with parameters of type ColumnReference Modifier and Type Method Description void
TableKeyExpressionCollector. apply(ColumnReference columnReference)
Method parameters in org.hibernate.query.sqm.mutation.internal with type arguments of type ColumnReference Modifier and Type Method Description BaseSqmToSqlAstConverter.AdditionalInsertValues
MultiTableSqmMutationConverter. visitInsertionTargetPaths(BiConsumer<Assignable,List<ColumnReference>> targetColumnReferenceConsumer, SqmInsertStatement<?> sqmStatement, EntityPersister entityDescriptor, TableGroup tableGroup, MultiTableSqmMutationConverter.SqmParameterResolutionConsumer parameterResolutionConsumer)
Specialized hook to visit the assignments defined by the update SQM allow "listening" for each SQL assignment.Predicate
MultiTableSqmMutationConverter. visitWhereClause(SqmWhereClause sqmWhereClause, Consumer<ColumnReference> restrictionColumnReferenceConsumer, MultiTableSqmMutationConverter.SqmParameterResolutionConsumer parameterResolutionConsumer)
-
Uses of ColumnReference in org.hibernate.query.sqm.sql
Method parameters in org.hibernate.query.sqm.sql with type arguments of type ColumnReference Modifier and Type Method Description BaseSqmToSqlAstConverter.AdditionalInsertValues
BaseSqmToSqlAstConverter. visitInsertionTargetPaths(BiConsumer<Assignable,List<ColumnReference>> targetColumnReferenceConsumer, SqmInsertStatement<?> sqmStatement, EntityPersister entityDescriptor, TableGroup rootTableGroup)
-
Uses of ColumnReference in org.hibernate.query.sqm.sql.internal
Methods in org.hibernate.query.sqm.sql.internal that return types with arguments of type ColumnReference Modifier and Type Method Description List<ColumnReference>
BasicValuedPathInterpretation. getColumnReferences()
List<ColumnReference>
EmbeddableValuedPathInterpretation. getColumnReferences()
List<ColumnReference>
EntityValuedPathInterpretation. getColumnReferences()
Method parameters in org.hibernate.query.sqm.sql.internal with type arguments of type ColumnReference Modifier and Type Method Description void
BasicValuedPathInterpretation. visitColumnReferences(Consumer<ColumnReference> columnReferenceConsumer)
void
EmbeddableValuedPathInterpretation. visitColumnReferences(Consumer<ColumnReference> columnReferenceConsumer)
void
EntityValuedPathInterpretation. visitColumnReferences(Consumer<ColumnReference> columnReferenceConsumer)
Constructors in org.hibernate.query.sqm.sql.internal with parameters of type ColumnReference Constructor Description BasicValuedPathInterpretation(ColumnReference columnReference, NavigablePath navigablePath, BasicValuedModelPart mapping, TableGroup tableGroup)
-
Uses of ColumnReference in org.hibernate.sql.ast
Methods in org.hibernate.sql.ast with parameters of type ColumnReference Modifier and Type Method Description void
SqlAstWalker. visitColumnReference(ColumnReference columnReference)
-
Uses of ColumnReference in org.hibernate.sql.ast.spi
Methods in org.hibernate.sql.ast.spi with parameters of type ColumnReference Modifier and Type Method Description void
AbstractSqlAstTranslator. visitColumnReference(ColumnReference columnReference)
void
AbstractSqlAstWalker. visitColumnReference(ColumnReference columnReference)
void
AggregateFunctionChecker. visitColumnReference(ColumnReference columnReference)
void
ExpressionReplacementWalker. visitColumnReference(ColumnReference columnReference)
-
Uses of ColumnReference in org.hibernate.sql.ast.tree
Methods in org.hibernate.sql.ast.tree that return types with arguments of type ColumnReference Modifier and Type Method Description List<ColumnReference>
AbstractMutationStatement. getReturningColumns()
List<ColumnReference>
MutationStatement. getReturningColumns()
Constructor parameters in org.hibernate.sql.ast.tree with type arguments of type ColumnReference Constructor Description AbstractMutationStatement(Map<String,CteStatement> cteStatements, NamedTableReference targetTable, List<ColumnReference> returningColumns)
-
Uses of ColumnReference in org.hibernate.sql.ast.tree.delete
Constructor parameters in org.hibernate.sql.ast.tree.delete with type arguments of type ColumnReference Constructor Description DeleteStatement(boolean withRecursive, Map<String,CteStatement> cteStatements, NamedTableReference targetTable, Predicate restriction, List<ColumnReference> returningColumns)
DeleteStatement(CteContainer cteContainer, NamedTableReference targetTable, Predicate restriction, List<ColumnReference> returningColumns)
DeleteStatement(NamedTableReference targetTable, Predicate restriction, List<ColumnReference> returningColumns)
-
Uses of ColumnReference in org.hibernate.sql.ast.tree.expression
Methods in org.hibernate.sql.ast.tree.expression that return ColumnReference Modifier and Type Method Description ColumnReference
ColumnReference. getColumnReference()
default ColumnReference
Expression. getColumnReference()
ColumnReference
SqlSelectionExpression. getColumnReference()
Methods in org.hibernate.sql.ast.tree.expression that return types with arguments of type ColumnReference Modifier and Type Method Description List<ColumnReference>
ColumnReference. getColumnReferences()
Method parameters in org.hibernate.sql.ast.tree.expression with type arguments of type ColumnReference Modifier and Type Method Description void
ColumnReference. visitColumnReferences(Consumer<ColumnReference> columnReferenceConsumer)
-
Uses of ColumnReference in org.hibernate.sql.ast.tree.from
Methods in org.hibernate.sql.ast.tree.from that return ColumnReference Modifier and Type Method Description ColumnReference
DelegatingTableGroup. getColumnReference()
-
Uses of ColumnReference in org.hibernate.sql.ast.tree.insert
Methods in org.hibernate.sql.ast.tree.insert that return types with arguments of type ColumnReference Modifier and Type Method Description List<ColumnReference>
InsertStatement. getTargetColumnReferences()
Methods in org.hibernate.sql.ast.tree.insert with parameters of type ColumnReference Modifier and Type Method Description void
InsertStatement. addTargetColumnReferences(ColumnReference... references)
Method parameters in org.hibernate.sql.ast.tree.insert with type arguments of type ColumnReference Modifier and Type Method Description void
InsertStatement. addTargetColumnReferences(List<ColumnReference> references)
Constructor parameters in org.hibernate.sql.ast.tree.insert with type arguments of type ColumnReference Constructor Description InsertStatement(boolean withRecursive, Map<String,CteStatement> cteStatements, NamedTableReference targetTable, List<ColumnReference> returningColumns)
InsertStatement(CteContainer cteContainer, NamedTableReference targetTable, List<ColumnReference> returningColumns)
InsertStatement(NamedTableReference targetTable, List<ColumnReference> returningColumns)
-
Uses of ColumnReference in org.hibernate.sql.ast.tree.update
Methods in org.hibernate.sql.ast.tree.update that return types with arguments of type ColumnReference Modifier and Type Method Description List<ColumnReference>
Assignable. getColumnReferences()
Method parameters in org.hibernate.sql.ast.tree.update with type arguments of type ColumnReference Modifier and Type Method Description default void
Assignable. visitColumnReferences(Consumer<ColumnReference> columnReferenceConsumer)
-