Uses of Interface
org.hibernate.tuple.entity.EntityTuplizer
-
Packages that use EntityTuplizer Package Description org.hibernate.boot This package contains the contracts that make up the Hibernate native bootstrapping API (building a SessionFactory).org.hibernate.boot.spi org.hibernate.persister.entity org.hibernate.tuple.entity -
-
Uses of EntityTuplizer in org.hibernate.boot
Method parameters in org.hibernate.boot with type arguments of type EntityTuplizer Modifier and Type Method Description SessionFactoryBuilder
SessionFactoryBuilder. applyEntityTuplizer(EntityMode entityMode, java.lang.Class<? extends EntityTuplizer> tuplizerClass)
Register the defaultEntityTuplizer
to be applied to the SessionFactory. -
Uses of EntityTuplizer in org.hibernate.boot.spi
Method parameters in org.hibernate.boot.spi with type arguments of type EntityTuplizer Modifier and Type Method Description T
AbstractDelegatingSessionFactoryBuilder. applyEntityTuplizer(EntityMode entityMode, java.lang.Class<? extends EntityTuplizer> tuplizerClass)
-
Uses of EntityTuplizer in org.hibernate.persister.entity
Methods in org.hibernate.persister.entity that return EntityTuplizer Modifier and Type Method Description EntityTuplizer
AbstractEntityPersister. getEntityTuplizer()
EntityTuplizer
EntityPersister. getEntityTuplizer()
-
Uses of EntityTuplizer in org.hibernate.tuple.entity
Classes in org.hibernate.tuple.entity that implement EntityTuplizer Modifier and Type Class Description class
AbstractEntityTuplizer
Support for tuplizers relating to entities.class
DynamicMapEntityTuplizer
AnEntityTuplizer
specific to the dynamic-map entity mode.class
PojoEntityTuplizer
AnEntityTuplizer
specific to the pojo entity mode.Methods in org.hibernate.tuple.entity that return EntityTuplizer Modifier and Type Method Description EntityTuplizer
EntityTuplizerFactory. constructDefaultTuplizer(EntityMode entityMode, EntityMetamodel metamodel, PersistentClass persistentClass)
Construct am instance of the default tuplizer for the given entity-mode.EntityTuplizer
EntityTuplizerFactory. constructTuplizer(java.lang.Class<? extends EntityTuplizer> tuplizerClass, EntityMetamodel metamodel, PersistentClass persistentClass)
Construct an instance of the given tuplizer class.EntityTuplizer
EntityTuplizerFactory. constructTuplizer(java.lang.String tuplizerClassName, EntityMetamodel metamodel, PersistentClass persistentClass)
Construct an instance of the given tuplizer class.EntityTuplizer
EntityMetamodel. getTuplizer()
Method parameters in org.hibernate.tuple.entity with type arguments of type EntityTuplizer Modifier and Type Method Description EntityTuplizer
EntityTuplizerFactory. constructTuplizer(java.lang.Class<? extends EntityTuplizer> tuplizerClass, EntityMetamodel metamodel, PersistentClass persistentClass)
Construct an instance of the given tuplizer class.void
EntityTuplizerFactory. registerDefaultTuplizerClass(EntityMode entityMode, java.lang.Class<? extends EntityTuplizer> tuplizerClass)
Method allowing registration of the tuplizer class to use as default for a particular entity-mode.
-