Uses of Interface
org.hibernate.metamodel.spi.EntityRepresentationStrategy
-
Packages that use EntityRepresentationStrategy Package Description org.hibernate This package defines the central Hibernate APIs, beginning withSessionFactory
, which represents an instance of Hibernate at runtime and is the source of new instances ofSession
andStatelessSession
, the most important APIs exposing persistence-related operations for entities.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.spi An SPI supporting custom instantiation of entity instances and embeddable objects.org.hibernate.persister.entity This package abstracts persistence mechanisms for entities. -
-
Uses of EntityRepresentationStrategy in org.hibernate
Methods in org.hibernate with parameters of type EntityRepresentationStrategy Modifier and Type Method Description default Object
Interceptor. instantiate(String entityName, EntityRepresentationStrategy representationStrategy, Object id)
Instantiate the entity. -
Uses of EntityRepresentationStrategy in org.hibernate.metamodel.internal
Classes in org.hibernate.metamodel.internal that implement EntityRepresentationStrategy Modifier and Type Class Description class
EntityRepresentationStrategyMap
class
EntityRepresentationStrategyPojoStandard
Methods in org.hibernate.metamodel.internal that return EntityRepresentationStrategy Modifier and Type Method Description EntityRepresentationStrategy
ManagedTypeRepresentationResolverStandard. resolveStrategy(PersistentClass bootDescriptor, EntityPersister runtimeDescriptor, RuntimeModelCreationContext creationContext)
-
Uses of EntityRepresentationStrategy in org.hibernate.metamodel.mapping
Methods in org.hibernate.metamodel.mapping that return EntityRepresentationStrategy Modifier and Type Method Description default EntityRepresentationStrategy
EntityMappingType. getRepresentationStrategy()
Describes how the entity is represented in the application's domain model. -
Uses of EntityRepresentationStrategy in org.hibernate.metamodel.spi
Methods in org.hibernate.metamodel.spi that return EntityRepresentationStrategy Modifier and Type Method Description EntityRepresentationStrategy
ManagedTypeRepresentationResolver. resolveStrategy(PersistentClass bootDescriptor, EntityPersister runtimeDescriptor, RuntimeModelCreationContext creationContext)
Resolve the strategy to use for the given entity -
Uses of EntityRepresentationStrategy in org.hibernate.persister.entity
Methods in org.hibernate.persister.entity that return EntityRepresentationStrategy Modifier and Type Method Description EntityRepresentationStrategy
AbstractEntityPersister. getRepresentationStrategy()
EntityRepresentationStrategy
EntityPersister. getRepresentationStrategy()
-