Uses of Class
org.hibernate.sql.ast.tree.from.TableReferenceJoin
-
Packages that use TableReferenceJoin Package Description 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.persister.entity This package abstracts persistence mechanisms for entities.org.hibernate.query.results Support for defining result set mappings used inNativeQuery
,ProcedureCall
, andStoredProcedureQuery
.org.hibernate.query.sqm.mutation.internal.temptable Support for multi-table SQM mutation (insert, update, delete) operations using a table to temporarily hold the matching ids.org.hibernate.sql.ast Package defining a SQL AST for use in generation of SQL.org.hibernate.sql.ast.spi Package defining support for creating and consuming a SQL AST.org.hibernate.sql.ast.tree.cte Support for common table expressions (CTE) in a SQL tree.org.hibernate.sql.ast.tree.from AST nodes representing root tables and joins in a SQL tree. -
-
Uses of TableReferenceJoin in org.hibernate.metamodel.mapping
Methods in org.hibernate.metamodel.mapping that return TableReferenceJoin Modifier and Type Method Description default TableReferenceJoin
EntityMappingType. createTableReferenceJoin(String joinTableExpression, SqlAliasBase sqlAliasBase, TableReference lhs, SqlAstCreationState creationState)
-
Uses of TableReferenceJoin in org.hibernate.persister.entity
Methods in org.hibernate.persister.entity that return TableReferenceJoin Modifier and Type Method Description TableReferenceJoin
AbstractEntityPersister. createTableReferenceJoin(String joinTableExpression, SqlAliasBase sqlAliasBase, TableReference lhs, SqlAstCreationState creationState)
protected TableReferenceJoin
AbstractEntityPersister. generateTableReferenceJoin(TableReference lhs, String joinTableExpression, SqlAliasBase sqlAliasBase, boolean innerJoin, String[] targetColumns, SqlAstCreationState creationState)
-
Uses of TableReferenceJoin in org.hibernate.query.results
Methods in org.hibernate.query.results that return types with arguments of type TableReferenceJoin Modifier and Type Method Description List<TableReferenceJoin>
TableGroupImpl. getTableReferenceJoins()
-
Uses of TableReferenceJoin in org.hibernate.query.sqm.mutation.internal.temptable
Methods in org.hibernate.query.sqm.mutation.internal.temptable with parameters of type TableReferenceJoin Modifier and Type Method Description protected void
TableBasedUpdateHandler. collectTableReference(TableReferenceJoin tableReferenceJoin, BiConsumer<String,TableReference> consumer)
-
Uses of TableReferenceJoin in org.hibernate.sql.ast
Methods in org.hibernate.sql.ast with parameters of type TableReferenceJoin Modifier and Type Method Description void
SqlAstWalker. visitTableReferenceJoin(TableReferenceJoin tableReferenceJoin)
-
Uses of TableReferenceJoin in org.hibernate.sql.ast.spi
Methods in org.hibernate.sql.ast.spi with parameters of type TableReferenceJoin Modifier and Type Method Description void
AbstractSqlAstTranslator. visitTableReferenceJoin(TableReferenceJoin tableReferenceJoin)
void
AbstractSqlAstWalker. visitTableReferenceJoin(TableReferenceJoin tableReferenceJoin)
void
AggregateFunctionChecker. visitTableReferenceJoin(TableReferenceJoin tableReferenceJoin)
void
ExpressionReplacementWalker. visitTableReferenceJoin(TableReferenceJoin tableReferenceJoin)
-
Uses of TableReferenceJoin in org.hibernate.sql.ast.tree.cte
Methods in org.hibernate.sql.ast.tree.cte that return types with arguments of type TableReferenceJoin Modifier and Type Method Description List<TableReferenceJoin>
CteTableGroup. getTableReferenceJoins()
-
Uses of TableReferenceJoin in org.hibernate.sql.ast.tree.from
Methods in org.hibernate.sql.ast.tree.from with parameters of type TableReferenceJoin Modifier and Type Method Description void
StandardTableGroup. addTableReferenceJoin(TableReferenceJoin join)
Constructor parameters in org.hibernate.sql.ast.tree.from with type arguments of type TableReferenceJoin Constructor Description CollectionTableGroup(boolean canUseInnerJoins, NavigablePath navigablePath, PluralAttributeMapping tableGroupProducer, boolean fetched, String sourceAlias, TableReference primaryTableReference, boolean realTableGroup, SqlAliasBase sqlAliasBase, Predicate<String> tableReferenceJoinNameChecker, BiFunction<String,TableGroup,TableReferenceJoin> tableReferenceJoinCreator, SessionFactoryImplementor sessionFactory)
StandardTableGroup(boolean canUseInnerJoins, NavigablePath navigablePath, TableGroupProducer tableGroupProducer, boolean fetched, String sourceAlias, TableReference primaryTableReference, boolean realTableGroup, SqlAliasBase sqlAliasBase, Predicate<String> tableReferenceJoinNameChecker, BiFunction<String,TableGroup,TableReferenceJoin> tableReferenceJoinCreator, SessionFactoryImplementor sessionFactory)
StandardTableGroup(boolean canUseInnerJoins, NavigablePath navigablePath, TableGroupProducer tableGroupProducer, String sourceAlias, TableReference primaryTableReference, boolean realTableGroup, SqlAliasBase sqlAliasBase, Predicate<String> tableReferenceJoinNameChecker, BiFunction<String,TableGroup,TableReferenceJoin> tableReferenceJoinCreator, SessionFactoryImplementor sessionFactory)
-