Uses of Interface
org.hibernate.persister.walking.spi.EntityDefinition
-
Packages that use EntityDefinition Package Description org.hibernate.id org.hibernate.persister.entity org.hibernate.persister.walking.spi org.hibernate.tuple.component org.hibernate.tuple.entity -
-
Uses of EntityDefinition in org.hibernate.id
Subinterfaces of EntityDefinition in org.hibernate.id Modifier and Type Interface Description interface
PostInsertIdentityPersister
A persister that may have an identity assigned by execution of a SQL INSERT. -
Uses of EntityDefinition in org.hibernate.persister.entity
Subinterfaces of EntityDefinition in org.hibernate.persister.entity Modifier and Type Interface Description interface
EntityPersister
Contract describing mapping information and persistence logic for a particular strategy of entity mapping.interface
Loadable
Implemented by a EntityPersister that may be loaded using Loader.interface
Lockable
Contract for things that can be locked via aLockingStrategy
.interface
OuterJoinLoadable
A EntityPersister that may be loaded by outer join using the OuterJoinLoader hierarchy and may be an element of a one-to-many association.interface
Queryable
Extends the generic EntityPersister contract to add operations required by the Hibernate Query Languageinterface
SQLLoadable
A class persister that supports queries expressed in the platform native SQL dialectinterface
UniqueKeyLoadable
Classes in org.hibernate.persister.entity that implement EntityDefinition Modifier and Type Class Description class
AbstractEntityPersister
Basic functionality for persisting an entity via JDBC through either generated or custom SQLclass
JoinedSubclassEntityPersister
An EntityPersister implementing the normalized "table-per-subclass" mapping strategyclass
SingleTableEntityPersister
The default implementation of the EntityPersister interface.class
UnionSubclassEntityPersister
Implementation of the "table-per-concrete-class" or "roll-down" mapping strategy for an entity and its inheritence hierarchy. -
Uses of EntityDefinition in org.hibernate.persister.walking.spi
Methods in org.hibernate.persister.walking.spi that return EntityDefinition Modifier and Type Method Description EntityDefinition
EntityIdentifierDefinition. getEntityDefinition()
EntityDefinition
AssociationAttributeDefinition. toEntityDefinition()
EntityDefinition
CollectionElementDefinition. toEntityDefinition()
If the element type returned byCollectionElementDefinition.getType()
is anEntityType
, then the entity definition for the collection element is returned; otherwise, IllegalStateException is thrown.EntityDefinition
CollectionIndexDefinition. toEntityDefinition()
If the index type returned byCollectionIndexDefinition.getType()
is anEntityType
, then the entity definition for the collection index is returned; otherwise, IllegalStateException is thrown.Methods in org.hibernate.persister.walking.spi with parameters of type EntityDefinition Modifier and Type Method Description void
AssociationVisitationStrategy. finishingEntity(EntityDefinition entityDefinition)
Notification we are finishing walking an entity.void
AssociationVisitationStrategy. startingEntity(EntityDefinition entityDefinition)
Notification we are starting to walk an entity. -
Uses of EntityDefinition in org.hibernate.tuple.component
Methods in org.hibernate.tuple.component that return EntityDefinition Modifier and Type Method Description EntityDefinition
CompositeBasedAssociationAttribute. toEntityDefinition()
-
Uses of EntityDefinition in org.hibernate.tuple.entity
Methods in org.hibernate.tuple.entity that return EntityDefinition Modifier and Type Method Description EntityDefinition
EntityBasedAssociationAttribute. toEntityDefinition()
-