Package | Description |
---|---|
org.hibernate |
This package defines the central Hibernate APIs.
|
org.hibernate.engine.spi | |
org.hibernate.internal |
An internal package containing mostly implementations of central Hibernate APIs.
|
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(java.lang.Class entityClass)
Deprecated.
Use the descriptors from
EntityManagerFactory.getMetamodel() instead |
ClassMetadata |
SessionFactory.getClassMetadata(java.lang.String entityName)
Deprecated.
Use the descriptors from
EntityManagerFactory.getMetamodel() instead |
Modifier and Type | Method and Description |
---|---|
java.util.Map<java.lang.String,ClassMetadata> |
SessionFactory.getAllClassMetadata()
Deprecated.
Use the descriptors from
EntityManagerFactory.getMetamodel() instead |
Modifier and Type | Method and Description |
---|---|
ClassMetadata |
SessionFactoryDelegatingImpl.getClassMetadata(java.lang.Class entityClass) |
ClassMetadata |
SessionFactoryDelegatingImpl.getClassMetadata(java.lang.String entityName) |
Modifier and Type | Method and Description |
---|---|
java.util.Map<java.lang.String,ClassMetadata> |
SessionFactoryDelegatingImpl.getAllClassMetadata() |
Modifier and Type | Method and Description |
---|---|
ClassMetadata |
SessionFactoryImpl.getClassMetadata(java.lang.Class persistentClass) |
ClassMetadata |
SessionFactoryImpl.getClassMetadata(java.lang.String entityName) |
Modifier and Type | Method and Description |
---|---|
java.util.Map<java.lang.String,ClassMetadata> |
SessionFactoryImpl.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 inheritence hierarchy.
|
Modifier and Type | Method and Description |
---|---|
ClassMetadata |
EntityPersister.getClassMetadata()
Get the user-visible metadata for the class (optional operation)
|
ClassMetadata |
AbstractEntityPersister.getClassMetadata() |
Copyright © 2001-2018 Red Hat, Inc. All Rights Reserved.