Package org.hibernate.metamodel.spi
Interface EntityInstantiator
-
- All Superinterfaces:
Instantiator
- All Known Implementing Classes:
AbstractEntityInstantiatorPojo
,EntityInstantiatorDynamicMap
,EntityInstantiatorPojoOptimized
,EntityInstantiatorPojoStandard
public interface EntityInstantiator extends Instantiator
Contract for instantiating entity values
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default boolean
canBeInstantiated()
Can this entity be instantiated?Object
instantiate(SessionFactoryImplementor sessionFactory)
Create an instance of managed entity-
Methods inherited from interface org.hibernate.metamodel.spi.Instantiator
isInstance, isSameClass
-
-
-
-
Method Detail
-
instantiate
Object instantiate(SessionFactoryImplementor sessionFactory)
Create an instance of managed entity
-
canBeInstantiated
default boolean canBeInstantiated()
Can this entity be instantiated?
-
-