Uses of Interface
org.hibernate.metamodel.mapping.ModelPart
-
Packages that use ModelPart Package Description org.hibernate.id This package contains the built-in id generators, all of which implementIdentifierGenerator
orPostInsertIdentifierGenerator
.org.hibernate.loader.ast.internal 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.metamodel.mapping.ordering.ast org.hibernate.persister.entity This package abstracts persistence mechanisms for entities.org.hibernate.persister.entity.mutation Defines support for performing mutation operations originating from persistence-context eventsorg.hibernate.query.derived org.hibernate.query.internal org.hibernate.query.results Support for defining result-set mappings used inNativeQuery
andProcedureCall
/StoredProcedureQuery
.org.hibernate.query.results.complete Support for immutable result/fetch builder graph nodes built from static sources such as JPA'sSqlResultSetMapping
or `hbm.xml` mapping<resultset/>
.org.hibernate.query.sqm.mutation.internal.cte org.hibernate.query.sqm.mutation.internal.inline 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.query.sqm.sql Package for the translation of SQM into SQL ASTorg.hibernate.query.sqm.sql.internal org.hibernate.sql This package defines helper classes for rendering SQL fragments and SQL statements.org.hibernate.sql.ast.tree.cte org.hibernate.sql.ast.tree.from org.hibernate.sql.results.graph org.hibernate.sql.results.graph.embeddable org.hibernate.sql.results.graph.entity org.hibernate.sql.results.graph.entity.internal -
-
Uses of ModelPart in org.hibernate.id
Subinterfaces of ModelPart in org.hibernate.id Modifier and Type Interface Description interface
PostInsertIdentityPersister
A persister that may have an identity assigned by execution of a SQLINSERT
. -
Uses of ModelPart in org.hibernate.loader.ast.internal
Methods in org.hibernate.loader.ast.internal that return ModelPart Modifier and Type Method Description ModelPart
LoadPlan. getRestrictivePart()
The part of the thing being loaded used to restrict which loadables get loadedModelPart
SingleIdLoadPlan. getRestrictivePart()
ModelPart
LoaderSqlAstCreationState. resolveModelPart(NavigablePath navigablePath)
Methods in org.hibernate.loader.ast.internal with parameters of type ModelPart Modifier and Type Method Description static SelectStatement
LoaderSelectBuilder. createSelect(Loadable loadable, List<? extends ModelPart> partsToSelect, ModelPart restrictedPart, DomainResult<?> cachedDomainResult, int numberOfKeysToLoad, LoadQueryInfluencers loadQueryInfluencers, LockOptions lockOptions, Consumer<JdbcParameter> jdbcParameterConsumer, SessionFactoryImplementor sessionFactory)
Create an SQL AST select-statement based on matching one-or-more keysstatic SelectStatement
LoaderSelectBuilder. createSelectByUniqueKey(Loadable loadable, List<? extends ModelPart> partsToSelect, ModelPart restrictedPart, DomainResult<?> cachedDomainResult, int numberOfKeysToLoad, LoadQueryInfluencers loadQueryInfluencers, LockOptions lockOptions, Consumer<JdbcParameter> jdbcParameterConsumer, SessionFactoryImplementor sessionFactory)
Create an SQL AST select-statement for a select by unique key based on matching one-or-more keysMethod parameters in org.hibernate.loader.ast.internal with type arguments of type ModelPart Modifier and Type Method Description static SelectStatement
LoaderSelectBuilder. createSelect(Loadable loadable, List<? extends ModelPart> partsToSelect, List<ModelPart> restrictedParts, DomainResult<?> cachedDomainResult, int numberOfKeysToLoad, LoadQueryInfluencers loadQueryInfluencers, LockOptions lockOptions, Consumer<JdbcParameter> jdbcParameterConsumer, SessionFactoryImplementor sessionFactory)
static SelectStatement
LoaderSelectBuilder. createSelect(Loadable loadable, List<? extends ModelPart> partsToSelect, ModelPart restrictedPart, DomainResult<?> cachedDomainResult, int numberOfKeysToLoad, LoadQueryInfluencers loadQueryInfluencers, LockOptions lockOptions, Consumer<JdbcParameter> jdbcParameterConsumer, SessionFactoryImplementor sessionFactory)
Create an SQL AST select-statement based on matching one-or-more keysstatic SelectStatement
LoaderSelectBuilder. createSelectByUniqueKey(Loadable loadable, List<? extends ModelPart> partsToSelect, ModelPart restrictedPart, DomainResult<?> cachedDomainResult, int numberOfKeysToLoad, LoadQueryInfluencers loadQueryInfluencers, LockOptions lockOptions, Consumer<JdbcParameter> jdbcParameterConsumer, SessionFactoryImplementor sessionFactory)
Create an SQL AST select-statement for a select by unique key based on matching one-or-more keysConstructors in org.hibernate.loader.ast.internal with parameters of type ModelPart Constructor Description MultiNaturalIdLoadingBatcher(EntityMappingType entityDescriptor, ModelPart restrictedPart, int batchSize, org.hibernate.loader.ast.internal.MultiNaturalIdLoadingBatcher.KeyValueResolver keyValueResolver, LoadQueryInfluencers loadQueryInfluencers, LockOptions lockOptions, SessionFactoryImplementor sessionFactory)
SingleIdArrayLoadPlan(ModelPart restrictivePart, SelectStatement sqlAst, List<JdbcParameter> jdbcParameters, LockOptions lockOptions, SessionFactoryImplementor sessionFactory)
SingleIdLoadPlan(Loadable persister, ModelPart restrictivePart, SelectStatement sqlAst, List<JdbcParameter> jdbcParameters, LockOptions lockOptions, SessionFactoryImplementor sessionFactory)
-
Uses of ModelPart in org.hibernate.loader.ast.spi
Subinterfaces of ModelPart in org.hibernate.loader.ast.spi Modifier and Type Interface Description interface
Loadable
Common details for things that can be loaded by a loader - generally entities and plural attributes (collections). -
Uses of ModelPart in org.hibernate.metamodel.internal
Classes in org.hibernate.metamodel.internal that implement ModelPart Modifier and Type Class Description class
AbstractCompositeIdentifierMapping
Base implementation for composite identifier mappingsMethods in org.hibernate.metamodel.internal that return ModelPart Modifier and Type Method Description ModelPart
AbstractCompositeIdentifierMapping. findSubPart(String name, EntityMappingType treatTargetType)
Method parameters in org.hibernate.metamodel.internal with type arguments of type ModelPart Modifier and Type Method Description void
AbstractCompositeIdentifierMapping. visitSubParts(Consumer<ModelPart> consumer, EntityMappingType treatTargetType)
-
Uses of ModelPart in org.hibernate.metamodel.mapping
Subinterfaces of ModelPart in org.hibernate.metamodel.mapping Modifier and Type Interface Description interface
AggregatedIdentifierMapping
An "aggregated" composite identifier, which is another way to say that the identifier is represented as an embeddable.interface
Association
Commonality for an association, mainly details relative to the foreign-keyinterface
AttributeMapping
Describes an attribute at the mapping model level.interface
BasicEntityIdentifierMapping
Mapping for a simple, single-column identifierinterface
BasicValuedModelPart
Describes a ModelPart which is a basic value, either aBasic
attribute a basic-valued collection partinterface
CollectionIdentifierDescriptor
Descriptor for the collection identifier.interface
CollectionPart
Hibernate understands mapping a collection into 4 parts The key - the foreign-key defining the association to the owner The element - for Map's this is analogous to the value The index - the List/array index or Map key The collection-id - this is only relevant for id-bag mappingsinterface
CompositeIdentifierMapping
Mapping for a composite identifierinterface
DiscriminatedAssociationModelPart
A discriminated association.interface
EmbeddableMappingType
Describes an embeddable - the actual typeinterface
EmbeddableValuedModelPart
Describes the mapping of an embeddable (composite).interface
EntityAssociationMapping
Commonality between `many-to-one`, `one-to-one` and `any`, as well as entity-valued collection elements and map-keysinterface
EntityDiscriminatorMapping
Details about the discriminator for an entity hierarchy.interface
EntityIdentifierMapping
Describes the mapping of an entity's identifier.interface
EntityMappingType
Mapping of an entityinterface
EntityRowIdMapping
Mapping of a row-idinterface
EntityValuedModelPart
Entity-valued model partManyToOne
OneToOne
entity-valued collection element entity-valued Map keyinterface
EntityVersionMapping
Describes the mapping of an entity's versioninterface
ForeignKeyDescriptor
Descriptor for foreign-keysinterface
ManagedMappingType
Mapping-model corollary toManagedType
interface
ModelPartContainer
Access to a group of ModelPart by name or for iteration.interface
NaturalIdMapping
Mapping for an entity's natural-id, if one is defined.interface
NonAggregatedIdentifierMapping
A "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 interface
NonAggregatedIdentifierMapping.IdentifierValueMapper
Think of an AttributeConverter for id values to account for representation difference between virtual and id-class mappingsinterface
PluralAttributeMapping
Mapping of a plural (collection-valued) attributeinterface
SingularAttributeMapping
Mapping for a singular (non-collection) attribute.interface
ValuedModelPart
Describes a ModelPart that is also a ValueMapping (and therefore also a SelectableMappings).interface
VirtualModelPart
Marker interface for parts of the application domain model that do not actually exist in the model classes.Methods in org.hibernate.metamodel.mapping that return ModelPart Modifier and Type Method Description default ModelPart
ModelPartContainer. findByPath(String path)
default ModelPart
EmbeddableValuedModelPart. findSubPart(String name, EntityMappingType treatTargetType)
default ModelPart
EntityMappingType. findSubPart(String name)
default ModelPart
EntityValuedModelPart. findSubPart(String name)
default ModelPart
EntityValuedModelPart. findSubPart(String name, EntityMappingType targetType)
ModelPart
ModelPartContainer. findSubPart(String name, EntityMappingType treatTargetType)
default ModelPart
EntityMappingType. findSubTypesSubPart(String name, EntityMappingType treatTargetType)
default ModelPart
CollectionPart. getInclusionCheckPart()
ModelPart
EntityAssociationMapping. getKeyTargetMatchPart()
The model sub-part relative to the associated entity type that is the target of this association's foreign-keydefault ModelPart
ForeignKeyDescriptor. getPart(ForeignKeyDescriptor.Nature nature)
Methods in org.hibernate.metamodel.mapping with parameters of type ModelPart Modifier and Type Method Description static Expression
MappingModelHelper. buildColumnReferenceExpression(ModelPart modelPart, SqlExpressionResolver sqlExpressionResolver, SessionFactoryImplementor sessionFactory)
static Expression
MappingModelHelper. buildColumnReferenceExpression(TableGroup tableGroup, ModelPart modelPart, SqlExpressionResolver sqlExpressionResolver, SessionFactoryImplementor sessionFactory)
static boolean
MappingModelHelper. isCompatibleModelPart(ModelPart attribute1, ModelPart attribute2)
Method parameters in org.hibernate.metamodel.mapping with type arguments of type ModelPart Modifier and Type Method Description default void
EmbeddableValuedModelPart. forEachSubPart(IndexedConsumer<ModelPart> consumer, EntityMappingType treatTarget)
default void
EntityValuedModelPart. forEachSubPart(IndexedConsumer<ModelPart> consumer, EntityMappingType treatTarget)
default void
ModelPartContainer. forEachSubPart(IndexedConsumer<ModelPart> consumer)
void
ModelPartContainer. forEachSubPart(IndexedConsumer<ModelPart> consumer, EntityMappingType treatTarget)
default void
EmbeddableValuedModelPart. visitSubParts(Consumer<ModelPart> consumer, EntityMappingType treatTargetType)
default void
EntityValuedModelPart. visitSubParts(Consumer<ModelPart> consumer, EntityMappingType targetType)
void
ModelPartContainer. visitSubParts(Consumer<ModelPart> consumer, EntityMappingType treatTargetType)
-
Uses of ModelPart in org.hibernate.metamodel.mapping.internal
Subinterfaces of ModelPart in org.hibernate.metamodel.mapping.internal Modifier and Type Interface Description interface
EntityCollectionPart
An entity-valued collection-part.interface
InFlightEntityMappingType
interface
SingleAttributeIdentifierMapping
Classes in org.hibernate.metamodel.mapping.internal that implement ModelPart Modifier and Type Class Description class
AbstractAttributeMapping
class
AbstractDiscriminatorMapping
class
AbstractEmbeddableMapping
Base support for EmbeddableMappingType implementationsclass
AbstractEntityCollectionPart
Base support for EntityCollectionPart implementationsclass
AbstractNaturalIdMapping
class
AbstractSingularAttributeMapping
class
AbstractStateArrayContributorMapping
class
AnyDiscriminatorPart
Acts as a ModelPart for the discriminator portion of an any-valued mappingclass
AnyKeyPart
Acts as a ModelPart for the key portion of an any-valued mappingclass
BasicAttributeMapping
class
BasicEntityIdentifierMappingImpl
Mapping of a simple identifierclass
BasicValuedCollectionPart
Models a basic collection element/value or index/keyclass
CaseStatementDiscriminatorMappingImpl
class
CollectionIdentifierDescriptorImpl
class
CompoundNaturalIdMapping
Multi-attribute NaturalIdMapping implementationclass
DiscriminatedAssociationAttributeMapping
Singular, any-valued attributeclass
DiscriminatedCollectionPart
class
EmbeddableMappingTypeImpl
Describes a "normal" embeddable.class
EmbeddedAttributeMapping
class
EmbeddedCollectionPart
class
EmbeddedForeignKeyDescriptor
class
EmbeddedIdentifierMappingImpl
Support forEmbeddedId
class
EntityRowIdMappingImpl
class
EntityVersionMappingImpl
class
ExplicitColumnDiscriminatorMappingImpl
class
IdClassEmbeddable
EmbeddableMappingType implementation describing anIdClass
class
InverseNonAggregatedIdentifierMapping
The inverse part of a "non-aggregated" composite identifier.class
ManyToManyCollectionPart
Entity-valued collection-part mapped through a join table.class
NonAggregatedIdentifierMappingImpl
A "non-aggregated" composite identifier.class
OneToManyCollectionPart
order( id, ...class
PluralAttributeMappingImpl
class
SimpleForeignKeyDescriptor
class
SimpleNaturalIdMapping
Single-attribute NaturalIdMapping implementationclass
ToOneAttributeMapping
class
VirtualEmbeddedAttributeMapping
class
VirtualIdEmbeddable
Embeddable describing the virtual-id aspect of a non-aggregated composite idMethods in org.hibernate.metamodel.mapping.internal with type parameters of type ModelPart Modifier and Type Method Description <T extends ModelPart>
TMappingModelCreationProcess. processSubPart(String localName, MappingModelCreationProcess.SubPartMappingProducer<T> subPartMappingProducer)
Methods in org.hibernate.metamodel.mapping.internal that return ModelPart Modifier and Type Method Description ModelPart
CompoundNaturalIdMapping. findSubPart(String name, EntityMappingType treatTargetType)
ModelPart
DiscriminatedAssociationAttributeMapping. findSubPart(String name, EntityMappingType treatTargetType)
ModelPart
DiscriminatedAssociationMapping. findSubPart(String name, EntityMappingType treatTarget)
ModelPart
DiscriminatedCollectionPart. findSubPart(String name, EntityMappingType treatTargetType)
ModelPart
EmbeddableMappingTypeImpl. findSubPart(String name, EntityMappingType treatTargetType)
ModelPart
EmbeddedAttributeMapping. findSubPart(String name, EntityMappingType treatTargetType)
ModelPart
EmbeddedCollectionPart. findSubPart(String name, EntityMappingType treatTargetType)
ModelPart
IdClassEmbeddable. findSubPart(String name, EntityMappingType treatTargetType)
ModelPart
ManyToManyCollectionPart. findSubPart(String name, EntityMappingType targetType)
ModelPart
PluralAttributeMappingImpl. findSubPart(String name, EntityMappingType treatTargetType)
ModelPart
ToOneAttributeMapping. findSubPart(String name)
ModelPart
ToOneAttributeMapping. findSubPart(String name, EntityMappingType targetType)
ModelPart
VirtualIdEmbeddable. findSubPart(String name, EntityMappingType treatTargetType)
ModelPart
ManyToManyCollectionPart. getInclusionCheckPart()
ModelPart
ManyToManyCollectionPart. getKeyTargetMatchPart()
ModelPart
ToOneAttributeMapping. getKeyTargetMatchPart()
Methods in org.hibernate.metamodel.mapping.internal with parameters of type ModelPart Modifier and Type Method Description void
AbstractDomainPath. apply(ModelPart referenceModelPart, QuerySpec ast, TableGroup tableGroup, String collation, String modelPartName, SortOrder sortOrder, NullPrecedence nullPrecedence, SqlAstCreationState creationState)
static Expression
MappingModelCreationHelper. buildColumnReferenceExpression(TableGroup tableGroup, ModelPart modelPart, SqlExpressionResolver sqlExpressionResolver, SessionFactoryImplementor sessionFactory)
protected boolean
ToOneAttributeMapping. isBidirectionalAttributeName(NavigablePath parentNavigablePath, ModelPart parentModelPart, NavigablePath fetchablePath, DomainResultCreationState creationState)
void
MappingModelCreationProcess. registerForeignKey(ModelPart keyOwner, ForeignKeyDescriptor keyDescriptor)
Expression
AbstractDomainPath. resolve(ModelPart referenceModelPart, QuerySpec ast, TableGroup tableGroup, String modelPartName, SqlAstCreationState creationState)
void
MappingModelCreationProcess. withForeignKey(ModelPart keyOwner, Consumer<ForeignKeyDescriptor> consumer)
Method parameters in org.hibernate.metamodel.mapping.internal with type arguments of type ModelPart Modifier and Type Method Description void
CompoundNaturalIdMapping. forEachSubPart(IndexedConsumer<ModelPart> consumer, EntityMappingType treatTarget)
void
DiscriminatedAssociationAttributeMapping. forEachSubPart(IndexedConsumer<ModelPart> consumer, EntityMappingType treatTarget)
void
DiscriminatedCollectionPart. forEachSubPart(IndexedConsumer<ModelPart> consumer, EntityMappingType treatTarget)
void
EmbeddableMappingTypeImpl. forEachSubPart(IndexedConsumer<ModelPart> consumer, EntityMappingType treatTarget)
void
IdClassEmbeddable. forEachSubPart(IndexedConsumer<ModelPart> consumer, EntityMappingType treatTarget)
void
PluralAttributeMappingImpl. forEachSubPart(IndexedConsumer<ModelPart> consumer, EntityMappingType treatTarget)
void
VirtualIdEmbeddable. forEachSubPart(IndexedConsumer<ModelPart> consumer, EntityMappingType treatTarget)
void
CompoundNaturalIdMapping. visitSubParts(Consumer<ModelPart> consumer, EntityMappingType treatTargetType)
void
DiscriminatedAssociationAttributeMapping. visitSubParts(Consumer<ModelPart> consumer, EntityMappingType treatTargetType)
void
DiscriminatedCollectionPart. visitSubParts(Consumer<ModelPart> consumer, EntityMappingType treatTargetType)
void
EmbeddableMappingTypeImpl. visitSubParts(Consumer<ModelPart> consumer, EntityMappingType treatTargetType)
void
EmbeddedAttributeMapping. visitSubParts(Consumer<ModelPart> consumer, EntityMappingType treatTargetType)
void
EmbeddedCollectionPart. visitSubParts(Consumer<ModelPart> consumer, EntityMappingType treatTargetType)
void
IdClassEmbeddable. visitSubParts(Consumer<ModelPart> consumer, EntityMappingType treatTargetType)
void
PluralAttributeMappingImpl. visitSubParts(Consumer<ModelPart> consumer, EntityMappingType treatTargetType)
void
VirtualIdEmbeddable. visitSubParts(Consumer<ModelPart> consumer, EntityMappingType treatTargetType)
-
Uses of ModelPart in org.hibernate.metamodel.mapping.ordering.ast
Fields in org.hibernate.metamodel.mapping.ordering.ast declared as ModelPart Modifier and Type Field Description protected ModelPart
DomainPathContinuation. referencedModelPart
Methods in org.hibernate.metamodel.mapping.ordering.ast that return ModelPart Modifier and Type Method Description ModelPart
DomainPath. getReferenceModelPart()
ModelPart
DomainPathContinuation. getReferenceModelPart()
Constructors in org.hibernate.metamodel.mapping.ordering.ast with parameters of type ModelPart Constructor Description DomainPathContinuation(NavigablePath navigablePath, DomainPath lhs, ModelPart referencedModelPart)
FkDomainPathContinuation(NavigablePath navigablePath, DomainPath lhs, ModelPart referencedModelPart, Set<String> possiblePaths)
-
Uses of ModelPart in org.hibernate.persister.entity
Subinterfaces of ModelPart in org.hibernate.persister.entity Modifier and Type Interface Description interface
EntityPersister
A strategy for persisting a mapped entity class.interface
Loadable
Deprecated, for removal: This API element is subject to removal in a future version.interface
Lockable
Contract for things that can be locked via aLockingStrategy
.interface
OuterJoinLoadable
AEntityPersister
that may be loaded by outer join using and may be an element of a one-to-many association.interface
Queryable
Deprecated.UseEntityMappingType
insteadinterface
SQLLoadable
AnEntityPersister
that supports queries expressed in the platform native SQL dialect.interface
UniqueKeyLoadable
AnEntityPersister
that can be loaded by a non-primary unique key.Classes in org.hibernate.persister.entity that implement ModelPart Modifier and Type Class Description class
AbstractEntityPersister
Basic functionality for persisting an entity via JDBC through either generated or custom SQLclass
JoinedSubclassEntityPersister
AnEntityPersister
implementing the normalizedInheritanceType.JOINED
inheritance mapping strategy for an entity and its inheritance hierarchy.class
SingleTableEntityPersister
The default implementation of theEntityPersister
interface.class
UnionSubclassEntityPersister
AnEntityPersister
implementing theInheritanceType.TABLE_PER_CLASS
mapping strategy for an entity and its inheritance hierarchy.Methods in org.hibernate.persister.entity that return ModelPart Modifier and Type Method Description ModelPart
AbstractEntityPersister. findSubPart(String name, EntityMappingType treatTargetType)
ModelPart
AbstractEntityPersister. findSubTypesSubPart(String name, EntityMappingType treatTargetType)
ModelPart
AbstractEntityPersister. getIdentifierDescriptor()
Method parameters in org.hibernate.persister.entity with type arguments of type ModelPart Modifier and Type Method Description void
AbstractEntityPersister. visitSubParts(Consumer<ModelPart> consumer, EntityMappingType treatTargetType)
-
Uses of ModelPart in org.hibernate.persister.entity.mutation
Methods in org.hibernate.persister.entity.mutation that return ModelPart Modifier and Type Method Description ModelPart
EntityMutationTarget. getIdentifierDescriptor()
The ModelPart describing the identifier/key for this targetConstructors in org.hibernate.persister.entity.mutation with parameters of type ModelPart Constructor Description KeyMapping(List<EntityTableMapping.KeyColumn> keyColumns, ModelPart identifierPart)
-
Uses of ModelPart in org.hibernate.query.derived
Classes in org.hibernate.query.derived that implement ModelPart Modifier and Type Class Description class
AnonymousTupleBasicEntityIdentifierMapping
class
AnonymousTupleBasicValuedModelPart
class
AnonymousTupleEmbeddableValuedModelPart
class
AnonymousTupleEmbeddedEntityIdentifierMapping
class
AnonymousTupleEntityValuedModelPart
class
AnonymousTupleNonAggregatedEntityIdentifierMapping
class
AnonymousTupleTableGroupProducer
The table group producer for an anonymous tuple type.class
CteTupleTableGroupProducer
The table group producer for a CTE tuple type.Methods in org.hibernate.query.derived that return ModelPart Modifier and Type Method Description ModelPart
AnonymousTupleEmbeddableValuedModelPart. findSubPart(String name, EntityMappingType treatTargetType)
ModelPart
AnonymousTupleEntityValuedModelPart. findSubPart(String name, EntityMappingType treatTargetType)
ModelPart
AnonymousTupleTableGroupProducer. findSubPart(String name, EntityMappingType treatTargetType)
ModelPart
CteTupleTableGroupProducer. findSubPart(String name, EntityMappingType treatTargetType)
ModelPart
AnonymousTupleEntityValuedModelPart. getForeignKeyPart()
Methods in org.hibernate.query.derived that return types with arguments of type ModelPart Modifier and Type Method Description Map<String,ModelPart>
AnonymousTupleTableGroupProducer. getModelParts()
Method parameters in org.hibernate.query.derived with type arguments of type ModelPart Modifier and Type Method Description void
AnonymousTupleTableGroupProducer. forEachSubPart(IndexedConsumer<ModelPart> consumer, EntityMappingType treatTarget)
void
AnonymousTupleEmbeddableValuedModelPart. visitSubParts(Consumer<ModelPart> consumer, EntityMappingType treatTargetType)
void
AnonymousTupleEntityValuedModelPart. visitSubParts(Consumer<ModelPart> consumer, EntityMappingType treatTargetType)
void
AnonymousTupleTableGroupProducer. visitSubParts(Consumer<ModelPart> consumer, EntityMappingType treatTargetType)
Constructor parameters in org.hibernate.query.derived with type arguments of type ModelPart Constructor Description AnonymousTupleEmbeddableValuedModelPart(Map<String,ModelPart> modelParts, DomainType<?> domainType, String componentName, EmbeddableValuedModelPart existingModelPartContainer, int fetchableIndex)
AnonymousTupleEmbeddedEntityIdentifierMapping(Map<String,ModelPart> modelParts, DomainType<?> domainType, String componentName, CompositeIdentifierMapping delegate)
AnonymousTupleNonAggregatedEntityIdentifierMapping(Map<String,ModelPart> modelParts, DomainType<?> domainType, String componentName, NonAggregatedIdentifierMapping delegate)
-
Uses of ModelPart in org.hibernate.query.internal
Constructors in org.hibernate.query.internal with parameters of type ModelPart Constructor Description ImplicitModelPartResultMemento(NavigablePath navigablePath, ModelPart referencedModelPart)
-
Uses of ModelPart in org.hibernate.query.results
Methods in org.hibernate.query.results that return ModelPart Modifier and Type Method Description ModelPart
DomainResultCreationStateImpl. resolveModelPart(NavigablePath navigablePath)
Methods in org.hibernate.query.results with parameters of type ModelPart Modifier and Type Method Description static String
ResultsHelper. attributeName(ModelPart identifierMapping)
-
Uses of ModelPart in org.hibernate.query.results.complete
Methods in org.hibernate.query.results.complete that return ModelPart Modifier and Type Method Description ModelPart
ModelPartReference. getReferencedPart()
The part of the domain model that is referenced -
Uses of ModelPart in org.hibernate.query.sqm.mutation.internal.cte
Methods in org.hibernate.query.sqm.mutation.internal.cte with parameters of type ModelPart Modifier and Type Method Description protected QuerySpec
AbstractCteMutationHandler. createIdSubQuery(CteStatement idSelectCte, ModelPart fkModelPart, SessionFactoryImplementor factory)
protected Predicate
AbstractCteMutationHandler. createIdSubQueryPredicate(List<? extends Expression> lhsExpressions, CteStatement idSelectCte, ModelPart fkModelPart, SessionFactoryImplementor factory)
-
Uses of ModelPart in org.hibernate.query.sqm.mutation.internal.inline
Methods in org.hibernate.query.sqm.mutation.internal.inline with parameters of type ModelPart Modifier and Type Method Description InListPredicate
InPredicateRestrictionProducer. produceRestriction(List<?> matchingIdValues, EntityMappingType entityDescriptor, int valueIndex, ModelPart valueModelPart, TableReference mutatingTableReference, Supplier<Consumer<SelectableConsumer>> columnsToMatchVisitationSupplier, ExecutionContext executionContext)
Predicate
MatchingIdRestrictionProducer. produceRestriction(List<?> matchingIdValues, EntityMappingType entityDescriptor, int valueIndex, ModelPart valueModelPart, TableReference mutatingTableReference, Supplier<Consumer<SelectableConsumer>> columnsToMatchVisitationSupplier, ExecutionContext executionContext)
Produce the restriction predicate -
Uses of ModelPart in org.hibernate.query.sqm.mutation.internal.temptable
Methods in org.hibernate.query.sqm.mutation.internal.temptable with parameters of type ModelPart Modifier and Type Method Description static QuerySpec
ExecuteWithTemporaryTableHelper. createIdTableSelectQuerySpec(TemporaryTable idTable, ModelPart fkModelPart, Function<SharedSessionContractImplementor,String> sessionUidAccess, EntityMappingType entityDescriptor, ExecutionContext executionContext)
-
Uses of ModelPart in org.hibernate.query.sqm.sql
Methods in org.hibernate.query.sqm.sql that return ModelPart Modifier and Type Method Description ModelPart
BaseSqmToSqlAstConverter. resolveModelPart(NavigablePath navigablePath)
-
Uses of ModelPart in org.hibernate.query.sqm.sql.internal
Methods in org.hibernate.query.sqm.sql.internal that return ModelPart Modifier and Type Method Description ModelPart
AbstractSqmPathInterpretation. getExpressionType()
ModelPart
EmbeddableValuedExpression. getExpressionType()
ModelPart
SqmPathInterpretation. getExpressionType()
Methods in org.hibernate.query.sqm.sql.internal with parameters of type ModelPart Modifier and Type Method Description static <T> EntityValuedPathInterpretation<T>
EntityValuedPathInterpretation. from(NavigablePath navigablePath, TableGroup tableGroup, ModelPart resultModelPart, boolean allowFkOptimization, EntityValuedModelPart mapping, EntityValuedModelPart treatedMapping, SqmToSqlAstConverter sqlAstCreationState)
Constructors in org.hibernate.query.sqm.sql.internal with parameters of type ModelPart Constructor Description AbstractSqmPathInterpretation(NavigablePath navigablePath, ModelPart mapping, TableGroup tableGroup)
DiscriminatedAssociationTypePathInterpretation(NavigablePath navigablePath, ModelPart mapping, TableGroup tableGroup, Expression expression)
-
Uses of ModelPart in org.hibernate.sql
Methods in org.hibernate.sql with parameters of type ModelPart Modifier and Type Method Description Update
Update. addPrimaryKeyColumns(ModelPart keyPart)
-
Uses of ModelPart in org.hibernate.sql.ast.tree.cte
Methods in org.hibernate.sql.ast.tree.cte with parameters of type ModelPart Modifier and Type Method Description static int
CteTable. determineModelPartStartIndex(EntityPersister entityDescriptor, ModelPart modelPart)
static void
CteTable. forEachCteColumn(String prefix, ModelPart modelPart, Consumer<CteColumn> consumer)
-
Uses of ModelPart in org.hibernate.sql.ast.tree.from
Subinterfaces of ModelPart in org.hibernate.sql.ast.tree.from Modifier and Type Interface Description interface
RootTableGroupProducer
Contract for things that can produce theTableGroup
that is a root of afrom-clause
interface
TableGroupJoinProducer
interface
TableGroupProducer
Marker interface for anything which produces a TableGroupMethods in org.hibernate.sql.ast.tree.from that return ModelPart Modifier and Type Method Description ModelPart
AbstractTableGroup. getExpressionType()
ModelPart
DelegatingTableGroup. getExpressionType()
ModelPart
LazyTableGroup. getExpressionType()
ModelPart
MutatingTableReferenceGroupWrapper. getExpressionType()
-
Uses of ModelPart in org.hibernate.sql.results.graph
Subinterfaces of ModelPart in org.hibernate.sql.results.graph Modifier and Type Interface Description interface
DatabaseSnapshotContributor
Contract for model-parts which contribute to their container's state array for database snapshotsinterface
Fetchable
Parts of the domain model that can be fetched.interface
FetchableContainer
Container ofFetchable
referencesMethods in org.hibernate.sql.results.graph that return ModelPart Modifier and Type Method Description ModelPart
Initializer. getInitializedPart()
default ModelPart
FetchParent. getReferencedModePart()
WhereasFetchParent.getReferencedMappingContainer()
andFetchParent.getReferencedMappingType()
return the referenced container type, this method returns the referenced part.ModelPart
DomainResultCreationState. resolveModelPart(NavigablePath navigablePath)
Resolve the ModelPart associated with a given NavigablePath.Methods in org.hibernate.sql.results.graph with parameters of type ModelPart Modifier and Type Method Description Initializer
AssemblerCreationState. resolveInitializer(NavigablePath navigablePath, ModelPart fetchedModelPart, Supplier<Initializer> producer)
-
Uses of ModelPart in org.hibernate.sql.results.graph.embeddable
Subinterfaces of ModelPart in org.hibernate.sql.results.graph.embeddable Modifier and Type Interface Description interface
EmbeddableValuedFetchable
-
Uses of ModelPart in org.hibernate.sql.results.graph.entity
Subinterfaces of ModelPart in org.hibernate.sql.results.graph.entity Modifier and Type Interface Description interface
EntityValuedFetchable
Fetchable which is entity-valuedMethods in org.hibernate.sql.results.graph.entity that return ModelPart Modifier and Type Method Description ModelPart
AbstractEntityInitializer. getInitializedPart()
-
Uses of ModelPart in org.hibernate.sql.results.graph.entity.internal
Methods in org.hibernate.sql.results.graph.entity.internal that return ModelPart Modifier and Type Method Description ModelPart
AbstractBatchEntitySelectFetchInitializer. getInitializedPart()
ModelPart
EntityDelayedFetchInitializer. getInitializedPart()
ModelPart
EntitySelectFetchInitializer. getInitializedPart()
-