Uses of Interface
org.hibernate.tuple.Tuplizer

Packages that use Tuplizer
org.hibernate.tuple This package defines a runtime metamodel for entities at the object level and abstracts the differences between the various entity modes. 
org.hibernate.tuple.component   
org.hibernate.tuple.entity   
 

Uses of Tuplizer in org.hibernate.tuple
 

Methods in org.hibernate.tuple that return Tuplizer
 Tuplizer EntityModeToTuplizerMapping.getTuplizerOrNull(EntityMode entityMode)
          Locate the contained tuplizer responsible for the given entity-mode.
 Tuplizer EntityModeToTuplizerMapping.getTuplizer(EntityMode entityMode)
          Locate the tuplizer contained within this mapping which is responsible for the given entity-mode.
 

Methods in org.hibernate.tuple with parameters of type Tuplizer
protected  void EntityModeToTuplizerMapping.addTuplizer(EntityMode entityMode, Tuplizer tuplizer)
           
 

Uses of Tuplizer in org.hibernate.tuple.component
 

Subinterfaces of Tuplizer in org.hibernate.tuple.component
 interface ComponentTuplizer
          Defines further responsibilities reagarding tuplization based on a mapped components.
 

Classes in org.hibernate.tuple.component that implement Tuplizer
 class AbstractComponentTuplizer
          Support for tuplizers relating to components.
 class Dom4jComponentTuplizer
          A ComponentTuplizer specific to the dom4j entity mode.
 class DynamicMapComponentTuplizer
          A ComponentTuplizer specific to the dynamic-map entity mode.
 class PojoComponentTuplizer
          A ComponentTuplizer specific to the pojo entity mode.
 

Uses of Tuplizer in org.hibernate.tuple.entity
 

Subinterfaces of Tuplizer in org.hibernate.tuple.entity
 interface EntityTuplizer
          Defines further responsibilities reagarding tuplization based on a mapped entity.
 

Classes in org.hibernate.tuple.entity that implement Tuplizer
 class AbstractEntityTuplizer
          Support for tuplizers relating to entities.
 class Dom4jEntityTuplizer
          An EntityTuplizer specific to the dom4j entity mode.
 class DynamicMapEntityTuplizer
          An EntityTuplizer specific to the dynamic-map entity mode.
 class PojoEntityTuplizer
          An EntityTuplizer specific to the pojo entity mode.