Uses of Class
org.hibernate.metamodel.mapping.AssociationKey
-
Packages that use AssociationKey Package Description org.hibernate.loader.ast.internal 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.query.results Support for defining result set mappings used inNativeQuery
,ProcedureCall
, andStoredProcedureQuery
.org.hibernate.query.sqm.sql Package for the translation of SQM into SQL ASTorg.hibernate.sql.results.graph Defines domain result graphs. -
-
Uses of AssociationKey in org.hibernate.loader.ast.internal
Methods in org.hibernate.loader.ast.internal with parameters of type AssociationKey Modifier and Type Method Description boolean
LoaderSqlAstCreationState. isAssociationKeyVisited(AssociationKey associationKey)
boolean
LoaderSqlAstCreationState. registerVisitedAssociationKey(AssociationKey associationKey)
void
LoaderSqlAstCreationState. removeVisitedAssociationKey(AssociationKey associationKey)
-
Uses of AssociationKey in org.hibernate.metamodel.mapping
Methods in org.hibernate.metamodel.mapping that return AssociationKey Modifier and Type Method Description AssociationKey
ForeignKeyDescriptor. getAssociationKey()
-
Uses of AssociationKey in org.hibernate.metamodel.mapping.internal
Methods in org.hibernate.metamodel.mapping.internal that return AssociationKey Modifier and Type Method Description AssociationKey
EmbeddedForeignKeyDescriptor. getAssociationKey()
AssociationKey
SimpleForeignKeyDescriptor. getAssociationKey()
protected abstract AssociationKey
AbstractEntityCollectionPart. resolveFetchAssociationKey()
protected AssociationKey
ManyToManyCollectionPart. resolveFetchAssociationKey()
protected AssociationKey
OneToManyCollectionPart. resolveFetchAssociationKey()
-
Uses of AssociationKey in org.hibernate.query.results
Methods in org.hibernate.query.results with parameters of type AssociationKey Modifier and Type Method Description boolean
DomainResultCreationStateImpl. isAssociationKeyVisited(AssociationKey associationKey)
boolean
DomainResultCreationStateImpl. registerVisitedAssociationKey(AssociationKey associationKey)
-
Uses of AssociationKey in org.hibernate.query.sqm.sql
Methods in org.hibernate.query.sqm.sql with parameters of type AssociationKey Modifier and Type Method Description boolean
BaseSqmToSqlAstConverter. isAssociationKeyVisited(AssociationKey associationKey)
boolean
BaseSqmToSqlAstConverter. registerVisitedAssociationKey(AssociationKey associationKey)
void
BaseSqmToSqlAstConverter. removeVisitedAssociationKey(AssociationKey associationKey)
-
Uses of AssociationKey in org.hibernate.sql.results.graph
Methods in org.hibernate.sql.results.graph with parameters of type AssociationKey Modifier and Type Method Description default boolean
DomainResultCreationState. isAssociationKeyVisited(AssociationKey circularityKey)
Checks whether the given circularityKey is registereddefault boolean
DomainResultCreationState. registerVisitedAssociationKey(AssociationKey circularityKey)
Registers a circularity detection keydefault void
DomainResultCreationState. removeVisitedAssociationKey(AssociationKey circularityKey)
Removes the registration of a circularity detection key
-