Uses of Class
org.hibernate.type.EntityType

Packages that use EntityType
org.hibernate.hql.classic This package contains the Hibernate 2.x query parser which is being end-of-lifed. 
org.hibernate.loader This package defines functionality for processing JDBC result sets and returning complex graphs of persistent objects. 
org.hibernate.loader.hql This package defines a loader for the AST-based query parser  
org.hibernate.persister.entity This package abstracts persistence mechanisms for entities, and defines the Hibernate runtime metamodel. 
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.type A Hibernate Type is a strategy for mapping a Java property type to a JDBC type or types. 
 

Uses of EntityType in org.hibernate.hql.classic
 

Methods in org.hibernate.hql.classic that return EntityType
protected  EntityType[] QueryTranslatorImpl.getOwnerAssociationTypes()
           
 

Uses of EntityType in org.hibernate.loader
 

Fields in org.hibernate.loader declared as EntityType
protected  EntityType[] OuterJoinLoader.ownerAssociationType
           
 

Methods in org.hibernate.loader that return EntityType
protected  EntityType[] OuterJoinLoader.getOwnerAssociationTypes()
           
protected  EntityType[] Loader.getOwnerAssociationTypes()
          An array of unique key property names by which the corresponding entities are referenced by other entities in the result set
 

Uses of EntityType in org.hibernate.loader.hql
 

Methods in org.hibernate.loader.hql that return EntityType
protected  EntityType[] QueryLoader.getOwnerAssociationTypes()
           
 

Uses of EntityType in org.hibernate.persister.entity
 

Methods in org.hibernate.persister.entity that return EntityType
 EntityType OuterJoinLoadable.getEntityType()
           
 EntityType BasicEntityPersister.getEntityType()
           
 

Methods in org.hibernate.persister.entity with parameters of type EntityType
protected  void AbstractPropertyMapping.initIdentifierPropertyPaths(String path, EntityType etype, String[] columns, Mapping factory)
           
 

Uses of EntityType in org.hibernate.tuple
 

Methods in org.hibernate.tuple that return EntityType
 EntityType EntityMetamodel.getEntityType()
           
 

Uses of EntityType in org.hibernate.type
 

Subclasses of EntityType in org.hibernate.type
 class ManyToOneType
          A many-to-one association to an entity
 class OneToOneType
          A one-to-one association to an entity
 class SpecialOneToOneType
          A one-to-one association that maps to specific formula(s) instead of the primary key column of the owning entity.
 

Methods in org.hibernate.type that return EntityType
static EntityType TypeFactory.oneToOne(String persistentClass, ForeignKeyDirection foreignKeyType, String uniqueKeyPropertyName, boolean lazy, boolean isEmbeddedInXML, String entityName, String propertyName)
          A one-to-one association type for the given class
static EntityType TypeFactory.manyToOne(String persistentClass)
          A many-to-one association type for the given class
static EntityType TypeFactory.manyToOne(String persistentClass, boolean lazy)
          A many-to-one association type for the given class
static EntityType TypeFactory.manyToOne(String persistentClass, String uniqueKeyPropertyName, boolean lazy, boolean isEmbeddedInXML, boolean ignoreNotFound)
          A many-to-one association type for the given class