Save This Page
Home » hibernate-distribution-3.3.1.GA-dist » org.hibernate » tuple » entity » [javadoc | source]
org.hibernate.tuple.entity
public class: EntityTuplizerFactory [javadoc | source]
java.lang.Object
   org.hibernate.tuple.entity.EntityTuplizerFactory

All Implemented Interfaces:
    Serializable

A registry allowing users to define the default EntityTuplizer class to use per EntityMode .
Field Summary
public static final  Class[] ENTITY_TUP_CTOR_SIG     
Method from org.hibernate.tuple.entity.EntityTuplizerFactory Summary:
constructDefaultTuplizer,   constructTuplizer,   constructTuplizer,   registerDefaultTuplizerClass
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.hibernate.tuple.entity.EntityTuplizerFactory Detail:
 public EntityTuplizer constructDefaultTuplizer(EntityMode entityMode,
    EntityMetamodel metamodel,
    PersistentClass persistentClass) 
    Construct am instance of the default tuplizer for the given entity-mode.
 public EntityTuplizer constructTuplizer(String tuplizerClassName,
    EntityMetamodel metamodel,
    PersistentClass persistentClass) 
    Construct an instance of the given tuplizer class.
 public EntityTuplizer constructTuplizer(Class tuplizerClass,
    EntityMetamodel metamodel,
    PersistentClass persistentClass) 
    Construct an instance of the given tuplizer class.
 public  void registerDefaultTuplizerClass(EntityMode entityMode,
    Class tuplizerClass) 
    Method allowing registration of the tuplizer class to use as default for a particular entity-mode.