Uses of Interface
org.hibernate.loader.ast.spi.Loadable
-
Packages that use Loadable Package Description 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.jpamodelgen.validation Validation for HQL queries.org.hibernate.loader.ast.internal org.hibernate.loader.ast.spi 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 -
-
Uses of Loadable in org.hibernate.id
Subinterfaces of Loadable 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 Loadable in org.hibernate.jpamodelgen.validation
Classes in org.hibernate.jpamodelgen.validation that implement Loadable Modifier and Type Class Description class
MockEntityPersister
static class
ProcessorSessionFactory.EntityPersister
-
Uses of Loadable in org.hibernate.loader.ast.internal
Methods in org.hibernate.loader.ast.internal that return Loadable Modifier and Type Method Description Loadable
LoadPlan. getLoadable()
The thing being loadedLoadable
SingleIdLoadPlan. getLoadable()
Methods in org.hibernate.loader.ast.internal with parameters of type Loadable 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. createSelectBySingleArrayParameter(Loadable loadable, ValuedModelPart restrictedPart, LoadQueryInfluencers influencers, LockOptions lockOptions, JdbcParameter jdbcArrayParameter, SessionFactoryImplementor sessionFactory)
Create a select-statement (SQL AST) for loading by multiple keys using a single SQL ARRAY parameterstatic 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 key -
Uses of Loadable in org.hibernate.loader.ast.spi
Methods in org.hibernate.loader.ast.spi that return Loadable Modifier and Type Method Description Loadable
Loader. getLoadable()
The value-mapping loaded by this loader -
Uses of Loadable in org.hibernate.metamodel.mapping
Subinterfaces of Loadable in org.hibernate.metamodel.mapping Modifier and Type Interface Description interface
EntityMappingType
Mapping of an entityinterface
PluralAttributeMapping
Mapping of a plural (collection-valued) attribute -
Uses of Loadable in org.hibernate.metamodel.mapping.internal
Subinterfaces of Loadable in org.hibernate.metamodel.mapping.internal Modifier and Type Interface Description interface
InFlightEntityMappingType
Classes in org.hibernate.metamodel.mapping.internal that implement Loadable Modifier and Type Class Description class
PluralAttributeMappingImpl
-
Uses of Loadable in org.hibernate.persister.entity
Subinterfaces of Loadable 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 Loadable 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. -
Uses of Loadable in org.hibernate.query.derived
Classes in org.hibernate.query.derived that implement Loadable Modifier and Type Class Description class
AnonymousTupleEntityValuedModelPart
-