Uses of Class
org.hibernate.type.EntityType
-
Packages that use EntityType Package Description org.hibernate.loader org.hibernate.loader.hql org.hibernate.loader.plan.spi Defines the SPI for the building blocks that make up a LoadPlan.org.hibernate.persister.entity org.hibernate.tuple.entity org.hibernate.type -
-
Uses of EntityType in org.hibernate.loader
Fields in org.hibernate.loader declared as EntityType Modifier and Type Field Description protected EntityType[]
JoinWalker. ownerAssociationTypes
protected EntityType[]
OuterJoinLoader. ownerAssociationTypes
Methods in org.hibernate.loader that return EntityType Modifier and Type Method Description EntityType[]
JoinWalker. getOwnerAssociationTypes()
protected EntityType[]
Loader. getOwnerAssociationTypes()
An array of the owner types corresponding to theLoader.getOwners()
returns.protected EntityType[]
OuterJoinLoader. getOwnerAssociationTypes()
Methods in org.hibernate.loader with parameters of type EntityType Modifier and Type Method Description protected EntityPersister
Loader. getEntityPersister(EntityType entityType)
void
JoinWalker. setOwnerAssociationTypes(EntityType[] ownerAssociationType)
-
Uses of EntityType in org.hibernate.loader.hql
Methods in org.hibernate.loader.hql that return EntityType Modifier and Type Method Description protected EntityType[]
QueryLoader. getOwnerAssociationTypes()
-
Uses of EntityType in org.hibernate.loader.plan.spi
Methods in org.hibernate.loader.plan.spi that return EntityType Modifier and Type Method Description EntityType
EntityFetch. getFetchedType()
Get the Hibernate Type that describes the fetched attribute as anEntityType
. -
Uses of EntityType in org.hibernate.persister.entity
Methods in org.hibernate.persister.entity that return EntityType Modifier and Type Method Description EntityType
AbstractEntityPersister. getEntityType()
EntityType
OuterJoinLoadable. getEntityType()
Methods in org.hibernate.persister.entity with parameters of type EntityType Modifier and Type Method Description protected void
AbstractPropertyMapping. initIdentifierPropertyPaths(java.lang.String path, EntityType etype, java.lang.String[] columns, java.lang.String[] columnReaders, java.lang.String[] columnReaderTemplates, java.lang.String[] formulaTemplates, Mapping factory)
protected void
AbstractPropertyMapping. initIdentifierPropertyPaths(java.lang.String path, EntityType etype, java.lang.String[] columns, java.lang.String[] columnReaders, java.lang.String[] columnReaderTemplates, Mapping factory)
-
Uses of EntityType in org.hibernate.tuple.entity
Methods in org.hibernate.tuple.entity that return EntityType Modifier and Type Method Description EntityType
EntityMetamodel. getEntityType()
-
Uses of EntityType in org.hibernate.type
Subclasses of EntityType in org.hibernate.type Modifier and Type Class Description class
ManyToOneType
A many-to-one association to an entity.class
OneToOneType
A one-to-one association to an entityclass
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 Modifier and Type Method Description EntityType
TypeFactory. manyToOne(java.lang.String persistentClass)
Deprecated.EntityType
TypeFactory. manyToOne(java.lang.String persistentClass, boolean lazy)
Deprecated.EntityType
TypeFactory. manyToOne(java.lang.String persistentClass, boolean referenceToPrimaryKey, java.lang.String uniqueKeyPropertyName, boolean lazy, boolean unwrapProxy, NotFoundAction notFoundAction, boolean isLogicalOneToOne)
Deprecated.EntityType
TypeFactory. manyToOne(java.lang.String persistentClass, boolean referenceToPrimaryKey, java.lang.String uniqueKeyPropertyName, java.lang.String propertyName, boolean lazy, boolean unwrapProxy, NotFoundAction notFoundAction, boolean isLogicalOneToOne)
Deprecated.EntityType
TypeFactory. manyToOne(java.lang.String persistentClass, java.lang.String uniqueKeyPropertyName, boolean lazy, boolean unwrapProxy, NotFoundAction notFoundAction, boolean isLogicalOneToOne)
Deprecated.EntityType
TypeFactory. oneToOne(java.lang.String persistentClass, ForeignKeyDirection foreignKeyType, boolean referenceToPrimaryKey, java.lang.String uniqueKeyPropertyName, boolean lazy, boolean unwrapProxy, java.lang.String entityName, java.lang.String propertyName)
EntityType
TypeFactory. oneToOne(java.lang.String persistentClass, ForeignKeyDirection foreignKeyType, boolean referenceToPrimaryKey, java.lang.String uniqueKeyPropertyName, boolean lazy, boolean unwrapProxy, java.lang.String entityName, java.lang.String propertyName, boolean constrained)
Deprecated.EntityType
TypeFactory. specialOneToOne(java.lang.String persistentClass, ForeignKeyDirection foreignKeyType, boolean referenceToPrimaryKey, java.lang.String uniqueKeyPropertyName, boolean lazy, boolean unwrapProxy, java.lang.String entityName, java.lang.String propertyName)
EntityType
TypeFactory. specialOneToOne(java.lang.String persistentClass, ForeignKeyDirection foreignKeyType, boolean referenceToPrimaryKey, java.lang.String uniqueKeyPropertyName, boolean lazy, boolean unwrapProxy, java.lang.String entityName, java.lang.String propertyName, boolean constrained)
Deprecated.Constructors in org.hibernate.type with parameters of type EntityType Constructor Description EntityType(EntityType original, java.lang.String superTypeEntityName)
-