Uses of Class
org.hibernate.type.EntityType

Packages that use EntityType
org.hibernate.hql.internal.ast.tree   
org.hibernate.hql.internal.ast.util   
org.hibernate.hql.internal.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.entity   
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.internal.ast.tree
 

Methods in org.hibernate.hql.internal.ast.tree with parameters of type EntityType
 void FromElement.initializeEntity(FromClause fromClause, String className, EntityPersister persister, EntityType type, String classAlias, String tableAlias)
           
 

Uses of EntityType in org.hibernate.hql.internal.ast.util
 

Methods in org.hibernate.hql.internal.ast.util with parameters of type EntityType
 String SessionFactoryHelper.getIdentifierOrUniqueKeyPropertyName(EntityType entityType)
          Determine the name of the property for the entity encapsulated by the given type which represents the id or unique-key.
 

Uses of EntityType in org.hibernate.hql.internal.classic
 

Methods in org.hibernate.hql.internal.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.ownerAssociationTypes
           
protected  EntityType[] JoinWalker.ownerAssociationTypes
           
 

Methods in org.hibernate.loader that return EntityType
protected  EntityType[] Loader.getOwnerAssociationTypes()
          An array of the owner types corresponding to the Loader.getOwners() returns.
protected  EntityType[] OuterJoinLoader.getOwnerAssociationTypes()
           
 EntityType[] JoinWalker.getOwnerAssociationTypes()
           
 

Methods in org.hibernate.loader with parameters of type EntityType
 void JoinWalker.setOwnerAssociationTypes(EntityType[] ownerAssociationType)
           
 

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 AbstractEntityPersister.getEntityType()
           
 

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

Uses of EntityType in org.hibernate.tuple.entity
 

Methods in org.hibernate.tuple.entity 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
 EntityType TypeFactory.manyToOne(String persistentClass)
           
 EntityType TypeFactory.manyToOne(String persistentClass, boolean lazy)
           
 EntityType TypeFactory.manyToOne(String persistentClass, String uniqueKeyPropertyName, boolean lazy, boolean unwrapProxy, boolean isEmbeddedInXML, boolean ignoreNotFound, boolean isLogicalOneToOne)
           
 EntityType TypeFactory.oneToOne(String persistentClass, ForeignKeyDirection foreignKeyType, String uniqueKeyPropertyName, boolean lazy, boolean unwrapProxy, boolean isEmbeddedInXML, String entityName, String propertyName)
           
 EntityType TypeFactory.specialOneToOne(String persistentClass, ForeignKeyDirection foreignKeyType, String uniqueKeyPropertyName, boolean lazy, boolean unwrapProxy, String entityName, String propertyName)
           
 



Copyright © 2001-2012 Red Hat, Inc. All Rights Reserved.