Package org.hibernate.metamodel
Interface RuntimeMetamodels
-
- All Known Subinterfaces:
RuntimeMetamodelsImplementor
public interface RuntimeMetamodelsAccess to Hibernate's runtime metamodels which includes its domain-model (JPA impl) and its relational-mapping model
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description EmbeddableValuedModelPartgetEmbedded(String role)default EntityMappingTypegetEntityMappingType(Class entityType)default EntityMappingTypegetEntityMappingType(String entityName)default StringgetImportedName(String name)JpaMetamodelgetJpaMetamodel()Access to the JPA / domain metamodelMappingMetamodelgetMappingMetamodel()Access to the relational-mapping modeldefault PluralAttributeMappinggetPluralAttributeMapping(String role)
-
-
-
Method Detail
-
getJpaMetamodel
JpaMetamodel getJpaMetamodel()
Access to the JPA / domain metamodel
-
getMappingMetamodel
MappingMetamodel getMappingMetamodel()
Access to the relational-mapping model
-
getEntityMappingType
default EntityMappingType getEntityMappingType(String entityName)
-
getEntityMappingType
default EntityMappingType getEntityMappingType(Class entityType)
-
getPluralAttributeMapping
default PluralAttributeMapping getPluralAttributeMapping(String role)
-
getEmbedded
EmbeddableValuedModelPart getEmbedded(String role)
-
-