Uses of Interface
org.hibernate.metamodel.mapping.ModelPartContainer
-
Packages that use ModelPartContainer Package Description org.hibernate.id This package contains the built-in id generators, all of which implementIdentifierGeneratororPostInsertIdentifierGenerator.org.hibernate.loader.ast.spi org.hibernate.metamodel.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.persister.entity This package abstracts persistence mechanisms for entities.org.hibernate.query.derived org.hibernate.query.results Support for defining result-set mappings used inNativeQueryandProcedureCall/StoredProcedureQuery.org.hibernate.sql.ast.tree.cte org.hibernate.sql.ast.tree.from org.hibernate.sql.model Package contains specialized SQL AST nodes and builders for table mutations for model parts originating from normal persistence-context events related to flush, etc.org.hibernate.sql.results.graph org.hibernate.sql.results.graph.embeddable org.hibernate.sql.results.graph.entity -
-
Uses of ModelPartContainer in org.hibernate.id
Subinterfaces of ModelPartContainer in org.hibernate.id Modifier and Type Interface Description interfacePostInsertIdentityPersisterA persister that may have an identity assigned by execution of a SQLINSERT. -
Uses of ModelPartContainer in org.hibernate.loader.ast.spi
Subinterfaces of ModelPartContainer in org.hibernate.loader.ast.spi Modifier and Type Interface Description interfaceLoadableCommon details for things that can be loaded by a loader - generally entities and plural attributes (collections). -
Uses of ModelPartContainer in org.hibernate.metamodel.internal
Classes in org.hibernate.metamodel.internal that implement ModelPartContainer Modifier and Type Class Description classAbstractCompositeIdentifierMappingBase implementation for composite identifier mappings -
Uses of ModelPartContainer in org.hibernate.metamodel.mapping
Subinterfaces of ModelPartContainer in org.hibernate.metamodel.mapping Modifier and Type Interface Description interfaceCompositeIdentifierMappingMapping for a composite identifierinterfaceDiscriminatedAssociationModelPartA discriminated association.interfaceEmbeddableMappingTypeDescribes an embeddable - the actual typeinterfaceEmbeddableValuedModelPartDescribes the mapping of an embeddable (composite).interfaceEntityAssociationMappingCommonality between `many-to-one`, `one-to-one` and `any`, as well as entity-valued collection elements and map-keysinterfaceEntityMappingTypeMapping of an entityinterfaceEntityValuedModelPartEntity-valued model partManyToOneOneToOneentity-valued collection element entity-valued Map keyinterfaceManagedMappingTypeMapping-model corollary toManagedTypeinterfaceNonAggregatedIdentifierMappingA "non-aggregated" composite identifier, which means that the entity itself does not define a singular representation of its identifier like an aggregated mapping does.static interfaceNonAggregatedIdentifierMapping.IdentifierValueMapperThink of an AttributeConverter for id values to account for representation difference between virtual and id-class mappingsinterfacePluralAttributeMappingMapping of a plural (collection-valued) attribute -
Uses of ModelPartContainer in org.hibernate.metamodel.mapping.internal
Subinterfaces of ModelPartContainer in org.hibernate.metamodel.mapping.internal Modifier and Type Interface Description interfaceEntityCollectionPartAn entity-valued collection-part.interfaceInFlightEntityMappingTypeClasses in org.hibernate.metamodel.mapping.internal that implement ModelPartContainer Modifier and Type Class Description classAbstractEmbeddableMappingBase support for EmbeddableMappingType implementationsclassAbstractEntityCollectionPartBase support for EntityCollectionPart implementationsclassCompoundNaturalIdMappingMulti-attribute NaturalIdMapping implementationclassDiscriminatedAssociationAttributeMappingSingular, any-valued attributeclassDiscriminatedCollectionPartclassEmbeddableMappingTypeImplDescribes a "normal" embeddable.classEmbeddedAttributeMappingclassEmbeddedCollectionPartclassEmbeddedIdentifierMappingImplSupport forEmbeddedIdclassIdClassEmbeddableEmbeddableMappingType implementation describing anIdClassclassInverseNonAggregatedIdentifierMappingThe inverse part of a "non-aggregated" composite identifier.classManyToManyCollectionPartEntity-valued collection-part mapped through a join table.classNonAggregatedIdentifierMappingImplA "non-aggregated" composite identifier.classOneToManyCollectionPartorder( id, ...classPluralAttributeMappingImplclassToOneAttributeMappingclassVirtualEmbeddedAttributeMappingclassVirtualIdEmbeddableEmbeddable describing the virtual-id aspect of a non-aggregated composite id -
Uses of ModelPartContainer in org.hibernate.persister.entity
Subinterfaces of ModelPartContainer in org.hibernate.persister.entity Modifier and Type Interface Description interfaceEntityPersisterA strategy for persisting a mapped entity class.interfaceLoadableDeprecated, for removal: This API element is subject to removal in a future version.interfaceLockableContract for things that can be locked via aLockingStrategy.interfaceOuterJoinLoadableAEntityPersisterthat may be loaded by outer join using and may be an element of a one-to-many association.interfaceQueryableDeprecated.UseEntityMappingTypeinsteadinterfaceSQLLoadableAnEntityPersisterthat supports queries expressed in the platform native SQL dialect.interfaceUniqueKeyLoadableAnEntityPersisterthat can be loaded by a non-primary unique key.Classes in org.hibernate.persister.entity that implement ModelPartContainer Modifier and Type Class Description classAbstractEntityPersisterBasic functionality for persisting an entity via JDBC through either generated or custom SQLclassJoinedSubclassEntityPersisterAnEntityPersisterimplementing the normalizedInheritanceType.JOINEDinheritance mapping strategy for an entity and its inheritance hierarchy.classSingleTableEntityPersisterThe default implementation of theEntityPersisterinterface.classUnionSubclassEntityPersisterAnEntityPersisterimplementing theInheritanceType.TABLE_PER_CLASSmapping strategy for an entity and its inheritance hierarchy. -
Uses of ModelPartContainer in org.hibernate.query.derived
Classes in org.hibernate.query.derived that implement ModelPartContainer Modifier and Type Class Description classAnonymousTupleEmbeddableValuedModelPartclassAnonymousTupleEmbeddedEntityIdentifierMappingclassAnonymousTupleEntityValuedModelPartclassAnonymousTupleNonAggregatedEntityIdentifierMappingclassAnonymousTupleTableGroupProducerThe table group producer for an anonymous tuple type.classCteTupleTableGroupProducerThe table group producer for a CTE tuple type. -
Uses of ModelPartContainer in org.hibernate.query.results
Constructors in org.hibernate.query.results with parameters of type ModelPartContainer Constructor Description TableGroupImpl(NavigablePath navigablePath, String alias, TableReference primaryTableReference, ModelPartContainer container) -
Uses of ModelPartContainer in org.hibernate.sql.ast.tree.cte
Constructors in org.hibernate.sql.ast.tree.cte with parameters of type ModelPartContainer Constructor Description CteTableGroup(boolean canUseInnerJoins, NavigablePath navigablePath, SqlAliasBase sqlAliasBase, ModelPartContainer modelPartContainer, NamedTableReference cteTableReference, Set<String> compatibleTableExpressions) -
Uses of ModelPartContainer in org.hibernate.sql.ast.tree.from
Subinterfaces of ModelPartContainer in org.hibernate.sql.ast.tree.from Modifier and Type Interface Description interfaceRootTableGroupProducerContract for things that can produce theTableGroupthat is a root of afrom-clauseinterfaceTableGroupJoinProducerinterfaceTableGroupProducerMarker interface for anything which produces a TableGroupMethods in org.hibernate.sql.ast.tree.from that return ModelPartContainer Modifier and Type Method Description ModelPartContainerMappedByTableGroup. getExpressionType()ModelPartContainerStandardVirtualTableGroup. getExpressionType()ModelPartContainerAbstractTableGroup. getModelPart()ModelPartContainerDelegatingTableGroup. getModelPart()ModelPartContainerMappedByTableGroup. getModelPart()ModelPartContainerMutatingTableReferenceGroupWrapper. getModelPart()ModelPartContainerTableGroup. getModelPart()Constructors in org.hibernate.sql.ast.tree.from with parameters of type ModelPartContainer Constructor Description AbstractTableGroup(boolean canUseInnerJoins, NavigablePath navigablePath, ModelPartContainer modelPartContainer, String sourceAlias, SqlAliasBase sqlAliasBase, SessionFactoryImplementor sessionFactory)MappedByTableGroup(NavigablePath navigablePath, ModelPartContainer modelPart, TableGroup underlyingTableGroup, boolean fetched, TableGroup parentTableGroup, BiPredicate<NavigablePath,String> navigablePathChecker)MutatingTableReferenceGroupWrapper(NavigablePath navigablePath, ModelPartContainer modelPart, NamedTableReference mutatingTableReference)StandardVirtualTableGroup(NavigablePath navigablePath, ModelPartContainer modelPart, TableGroup underlyingTableGroup, boolean fetched) -
Uses of ModelPartContainer in org.hibernate.sql.model
Methods in org.hibernate.sql.model that return ModelPartContainer Modifier and Type Method Description ModelPartContainerMutationTarget. getTargetPart()The ModelPart describing the mutation target -
Uses of ModelPartContainer in org.hibernate.sql.results.graph
Subinterfaces of ModelPartContainer in org.hibernate.sql.results.graph Modifier and Type Interface Description interfaceFetchableContainerContainer ofFetchablereferences -
Uses of ModelPartContainer in org.hibernate.sql.results.graph.embeddable
Subinterfaces of ModelPartContainer in org.hibernate.sql.results.graph.embeddable Modifier and Type Interface Description interfaceEmbeddableValuedFetchable -
Uses of ModelPartContainer in org.hibernate.sql.results.graph.entity
Subinterfaces of ModelPartContainer in org.hibernate.sql.results.graph.entity Modifier and Type Interface Description interfaceEntityValuedFetchableFetchable which is entity-valued
-