| Package | Description |
|---|---|
| org.hibernate |
This package defines the central Hibernate APIs.
|
| org.hibernate.engine.spi | |
| org.hibernate.persister.entity |
This package abstracts persistence mechanisms for
entities, and defines the Hibernate runtime
metamodel.
|
| Modifier and Type | Method and Description |
|---|---|
ClassMetadata |
SessionFactory.getClassMetadata(Class entityClass)
Deprecated.
Use the descriptors from
EntityManagerFactory.getMetamodel() instead |
ClassMetadata |
SessionFactory.getClassMetadata(String entityName)
Deprecated.
Use the descriptors from
EntityManagerFactory.getMetamodel() instead |
| Modifier and Type | Method and Description |
|---|---|
Map<String,ClassMetadata> |
SessionFactory.getAllClassMetadata()
Deprecated.
Use the descriptors from
EntityManagerFactory.getMetamodel() instead |
| Modifier and Type | Method and Description |
|---|---|
ClassMetadata |
SessionFactoryDelegatingImpl.getClassMetadata(Class entityClass) |
ClassMetadata |
SessionFactoryDelegatingImpl.getClassMetadata(String entityName) |
| Modifier and Type | Method and Description |
|---|---|
Map<String,ClassMetadata> |
SessionFactoryDelegatingImpl.getAllClassMetadata() |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractEntityPersister
Basic functionality for persisting an entity via JDBC
through either generated or custom SQL
|
class |
JoinedSubclassEntityPersister
An EntityPersister implementing the normalized "table-per-subclass"
mapping strategy
|
class |
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 inheritance hierarchy.
|
| Modifier and Type | Method and Description |
|---|---|
ClassMetadata |
AbstractEntityPersister.getClassMetadata() |
ClassMetadata |
EntityPersister.getClassMetadata()
Get the user-visible metadata for the class (optional operation)
|
Copyright © 2001-2022 Red Hat, Inc. All Rights Reserved.