Interface AnnotatedEntityMetamodelFactory
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Factory for creating
AnnotatedEntityMetamodel instances for a given entity type. Used by the
AnnotatedEntityMetamodel to create child metamodels using the same configuration that were used to
create the parent metamodel.- Since:
- 5.0.0
- Author:
- Mitchell Herrijgers
-
Method Summary
Modifier and TypeMethodDescription<C> AnnotatedEntityMetamodel<C> createMetamodelForType(Class<C> entityType) Creates anAnnotatedEntityMetamodelfor the given entity type.
-
Method Details
-
createMetamodelForType
Creates anAnnotatedEntityMetamodelfor the given entity type.- Type Parameters:
C- The type of the entity.- Parameters:
entityType- The type of the entity to create a metamodel for.- Returns:
- An
AnnotatedEntityMetamodelfor the given entity type.
-