Uses of Interface
org.hibernate.metamodel.model.domain.JpaMetamodel
-
Packages that use JpaMetamodel 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.graph.internal org.hibernate.graph.spi org.hibernate.metamodel This package defines an API for accessing the runtime metamodel describing persistent entities in Java and their mappings to the relational database schema.org.hibernate.metamodel.model.domain.internal Implementation of the SPI for the runtime domain metamodel.org.hibernate.metamodel.model.domain.spi An SPI for the runtime domain metamodel.org.hibernate.metamodel.spi An SPI supporting custom instantiation of entity instances and embeddable objects.org.hibernate.query.sqm This package defines a semantic model of HQL queries.org.hibernate.query.sqm.internal Package for the SQM-backed Query implementation detailsorg.hibernate.query.sqm.tree.expression Nodes representing expressions in the SQM tree. -
-
Uses of JpaMetamodel in org.hibernate
Subinterfaces of JpaMetamodel in org.hibernate Modifier and Type Interface Description interface
Metamodel
Deprecated.PreferJpaMetamodel
-
Uses of JpaMetamodel in org.hibernate.graph.internal
Methods in org.hibernate.graph.internal that return JpaMetamodel Modifier and Type Method Description JpaMetamodel
AbstractGraph. jpaMetamodel()
protected JpaMetamodel
AbstractGraphNode. jpaMetamodel()
Constructors in org.hibernate.graph.internal with parameters of type JpaMetamodel Constructor Description AbstractGraph(ManagedDomainType<J> managedType, boolean mutable, JpaMetamodel jpaMetamodel)
AbstractGraphNode(boolean mutable, JpaMetamodel jpaMetamodel)
AttributeNodeImpl(boolean mutable, PersistentAttribute<X,J> attribute, JpaMetamodel jpaMetamodel)
RootGraphImpl(String name, EntityDomainType<J> entityType, boolean mutable, JpaMetamodel jpaMetamodel)
RootGraphImpl(String name, EntityDomainType<J> entityType, JpaMetamodel jpaMetamodel)
SubGraphImpl(ManagedDomainType<J> managedType, boolean mutable, JpaMetamodel jpaMetamodel)
-
Uses of JpaMetamodel in org.hibernate.graph.spi
Methods in org.hibernate.graph.spi that return JpaMetamodel Modifier and Type Method Description JpaMetamodel
GraphImplementor. jpaMetamodel()
-
Uses of JpaMetamodel in org.hibernate.metamodel
Methods in org.hibernate.metamodel that return JpaMetamodel Modifier and Type Method Description JpaMetamodel
RuntimeMetamodels. getJpaMetamodel()
Access to the JPA / domain metamodel. -
Uses of JpaMetamodel in org.hibernate.metamodel.model.domain.internal
Classes in org.hibernate.metamodel.model.domain.internal that implement JpaMetamodel Modifier and Type Class Description class
JpaMetamodelImpl
class
MappingMetamodelImpl
Implementation of the JPA-defined contractMetamodel
.Methods in org.hibernate.metamodel.model.domain.internal with parameters of type JpaMetamodel Modifier and Type Method Description static <S> ManagedDomainType<S>
DomainModelHelper. resolveSubType(ManagedDomainType<? super S> baseType, Class<S> subTypeClass, JpaMetamodel jpaMetamodel)
static <T,S extends T>
ManagedDomainType<S>DomainModelHelper. resolveSubType(ManagedDomainType<T> baseType, String subTypeName, JpaMetamodel jpaMetamodel)
-
Uses of JpaMetamodel in org.hibernate.metamodel.model.domain.spi
Subinterfaces of JpaMetamodel in org.hibernate.metamodel.model.domain.spi Modifier and Type Interface Description interface
JpaMetamodelImplementor
SPI extendingJpaMetamodel
. -
Uses of JpaMetamodel in org.hibernate.metamodel.spi
Subinterfaces of JpaMetamodel in org.hibernate.metamodel.spi Modifier and Type Interface Description interface
MetamodelImplementor
Deprecated.UseMappingMetamodel
orJpaMetamodel
instead. -
Uses of JpaMetamodel in org.hibernate.query.sqm
Methods in org.hibernate.query.sqm that return JpaMetamodel Modifier and Type Method Description JpaMetamodel
NodeBuilder. getDomainModel()
-
Uses of JpaMetamodel in org.hibernate.query.sqm.internal
Methods in org.hibernate.query.sqm.internal that return JpaMetamodel Modifier and Type Method Description JpaMetamodel
SqmCriteriaNodeBuilder. getDomainModel()
-
Uses of JpaMetamodel in org.hibernate.query.sqm.tree.expression
Constructors in org.hibernate.query.sqm.tree.expression with parameters of type JpaMetamodel Constructor Description SqmBinaryArithmetic(BinaryArithmeticOperator operator, SqmExpression<?> lhsOperand, SqmExpression<?> rhsOperand, JpaMetamodel domainModel, NodeBuilder nodeBuilder)
-