Uses of Interface
org.hibernate.metamodel.mapping.ModelPart
-
Packages that use ModelPart Package Description org.hibernate.generator.values Contains a framework of strategies for efficient retrieval of database-generated values.org.hibernate.generator.values.internal org.hibernate.id This package and its subpackages, especiallyorg.hibernate.id.enhanced
, contain the built-in id generators, all of which implement eitherIdentifierGenerator
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 events.org.hibernate.processor.validation Validation for HQL queries.org.hibernate.query.derived org.hibernate.query.internal org.hibernate.query.results Support for defining result set mappings used inNativeQuery
,ProcedureCall
, andStoredProcedureQuery
.org.hibernate.query.results.complete Support for immutable result/fetch builder graph nodes built from static sources such asSqlResultSetMapping
or thehbm.xml
mapping element<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.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.org.hibernate.sql.results.graph Defines domain result graphs.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.generator.values
Methods in org.hibernate.generator.values with parameters of type ModelPart Modifier and Type Method Description void
GeneratedValues. addGeneratedValue(ModelPart modelPart, Object value)
Register a generated value for the correspondingModelPart
Object
GeneratedValues. getGeneratedValue(ModelPart modelPart)
Retrieve a generated value for the requestedModelPart
.Method parameters in org.hibernate.generator.values with type arguments of type ModelPart Modifier and Type Method Description List<Object>
GeneratedValues. getGeneratedValues(List<? extends ModelPart> modelParts)
Retrieves a list of generated values corresponding to the list of requestedModelPart
s. -
Uses of ModelPart in org.hibernate.generator.values.internal
Methods in org.hibernate.generator.values.internal with parameters of type ModelPart Modifier and Type Method Description void
GeneratedValuesImpl. addGeneratedValue(ModelPart modelPart, Object value)
Object
GeneratedValuesImpl. getGeneratedValue(ModelPart modelPart)
Method parameters in org.hibernate.generator.values.internal with type arguments of type ModelPart Modifier and Type Method Description List<Object>
GeneratedValuesImpl. getGeneratedValues(List<? extends ModelPart> modelParts)
Constructor parameters in org.hibernate.generator.values.internal with type arguments of type ModelPart Constructor Description GeneratedValuesImpl(List<? extends ModelPart> generatedProperties)
-
Uses of ModelPart in org.hibernate.id
Subinterfaces of ModelPart in org.hibernate.id Modifier and Type Interface Description interface
PostInsertIdentityPersister
Deprecated, for removal: This API element is subject to removal in a future version.UseEntityPersister
instead. -
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, LoadQueryInfluencers loadQueryInfluencers, LockOptions lockOptions, Consumer<JdbcParameter> jdbcParameterConsumer, SessionFactoryImplementor sessionFactory)
Create an SQL AST select-statement for loading by unique keyMethod 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, LoadQueryInfluencers loadQueryInfluencers, LockOptions lockOptions, Consumer<JdbcParameter> jdbcParameterConsumer, SessionFactoryImplementor sessionFactory)
Create an SQL AST select-statement for loading by unique keyConstructors 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(EntityMappingType entityMappingType, ModelPart restrictivePart, SelectStatement sqlAst, JdbcParametersList jdbcParameters, LockOptions lockOptions, SessionFactoryImplementor sessionFactory)
SingleIdLoadPlan(EntityMappingType entityMappingType, ModelPart restrictivePart, SelectStatement sqlAst, JdbcParametersList 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 Maps 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
DiscriminatorMapping
Mapping of a discriminator, for either entity or association (ANY) discrimination.interface
EmbeddableDiscriminatorMapping
Details about the discriminator for an embeddable hierarchy.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
interface
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
OwnedValuedModelPart
Marker interface for valued model parts that have a declaring/owner type.interface
PluralAttributeMapping
Mapping of a plural (collection-valued) attributeinterface
SingularAttributeMapping
Mapping for a singular (non-collection) attribute.interface
SoftDeletableModelPart
Model part which can be soft-deletedinterface
SoftDeleteMapping
Metadata about the indicator column for entities and collections enabled for soft deleteinterface
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
ModelPartContainer. findByPath(DotIdentifierSequence 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-keyMethods in org.hibernate.metamodel.mapping with parameters of type ModelPart Modifier and Type Method Description 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
SoftDeleteMappingImpl
SoftDeleteMapping 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
AbstractEmbeddableMapping. findSubPart(String name, EntityMappingType treatTargetType)
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
EmbeddedCollectionPart. 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
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, SortDirection 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
AbstractEmbeddableMapping. forEachSubPart(IndexedConsumer<ModelPart> consumer, EntityMappingType treatTarget)
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
PluralAttributeMappingImpl. forEachSubPart(IndexedConsumer<ModelPart> consumer, EntityMappingType treatTarget)
void
AbstractEmbeddableMapping. visitSubParts(Consumer<ModelPart> consumer, EntityMappingType treatTargetType)
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
EmbeddedCollectionPart. visitSubParts(Consumer<ModelPart> consumer, EntityMappingType treatTargetType)
void
PluralAttributeMappingImpl. 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
DeprecatedEntityStuff
Deprecated.Just used to singly extend all the deprecated entity persister rolesinterface
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
Deprecated, for removal: This API element is subject to removal in a future version.interface
OuterJoinLoadable
Deprecated, for removal: This API element is subject to removal in a future version.interface
Queryable
Deprecated.UseEntityMappingType
insteadinterface
SQLLoadable
Deprecated, for removal: This API element is subject to removal in a future version.interface
UniqueKeyLoadable
Classes in org.hibernate.persister.entity that implement ModelPart Modifier and Type Class Description class
AbstractEntityPersister
Basic functionality for persisting an entity via JDBC, using either generated or custom SQL.class
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.Fields in org.hibernate.persister.entity with type parameters of type ModelPart Modifier and Type Field Description protected List<? extends ModelPart>
AbstractEntityPersister. insertGeneratedProperties
protected List<? extends ModelPart>
AbstractEntityPersister. updateGeneratedProperties
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()
Methods in org.hibernate.persister.entity that return types with arguments of type ModelPart Modifier and Type Method Description default List<? extends ModelPart>
EntityPersister. getGeneratedProperties(EventType timing)
List<? extends ModelPart>
AbstractEntityPersister. getInsertGeneratedProperties()
default List<? extends ModelPart>
EntityPersister. getInsertGeneratedProperties()
List<? extends ModelPart>
AbstractEntityPersister. getUpdateGeneratedProperties()
default List<? extends ModelPart>
EntityPersister. getUpdateGeneratedProperties()
protected List<? extends ModelPart>
AbstractEntityPersister. initInsertGeneratedProperties(List<AttributeMapping> generatedAttributes)
protected List<? extends ModelPart>
AbstractEntityPersister. initUpdateGeneratedProperties(List<AttributeMapping> generatedAttributes)
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.processor.validation
Classes in org.hibernate.processor.validation that implement ModelPart Modifier and Type Class Description class
MockEntityPersister
static class
ProcessorSessionFactory.EntityPersister
-
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 static ModelPart
AnonymousTupleTableGroupProducer. createModelPart(MappingType mappingType, SqmExpressible<?> sqmExpressible, DomainType<?> domainType, List<SqlSelection> sqlSelections, int selectionIndex, String selectionExpression, String partName, ModelPart existingModelPart, Set<String> compatibleTableExpressions, int fetchableIndex)
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()
Methods in org.hibernate.query.derived with parameters of type ModelPart Modifier and Type Method Description static ModelPart
AnonymousTupleTableGroupProducer. createModelPart(MappingType mappingType, SqmExpressible<?> sqmExpressible, DomainType<?> domainType, List<SqlSelection> sqlSelections, int selectionIndex, String selectionExpression, String partName, ModelPart existingModelPart, Set<String> compatibleTableExpressions, int fetchableIndex)
Method parameters in org.hibernate.query.derived with type arguments of type ModelPart Modifier and Type Method Description void
AnonymousTupleEmbeddableValuedModelPart. forEachSubPart(IndexedConsumer<ModelPart> consumer, EntityMappingType treatTarget)
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)
-
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<Expression> matchingIdValueExpressions, EntityMappingType entityDescriptor, int valueIndex, ModelPart valueModelPart, TableReference mutatingTableReference, Supplier<Consumer<SelectableConsumer>> columnsToMatchVisitationSupplier, ExecutionContext executionContext)
Predicate
MatchingIdRestrictionProducer. produceRestriction(List<Expression> idExpressions, 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, 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)
AnyDiscriminatorPathInterpretation(NavigablePath navigablePath, ModelPart mapping, TableGroup tableGroup, Expression expression)
-
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-valued -
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
DiscriminatedEntityInitializer. getInitializedPart()
ModelPart
EntityDelayedFetchInitializer. getInitializedPart()
ModelPart
EntityInitializerImpl. getInitializedPart()
ModelPart
EntitySelectFetchInitializer. getInitializedPart()
-