类 CollectionReturn
- java.lang.Object
-
- org.hibernate.loader.custom.NonScalarReturn
-
- org.hibernate.loader.custom.CollectionReturn
-
- 所有已实现的接口:
Return
public class CollectionReturn extends NonScalarReturn
Represents a return which names a collection role; it is used in defining a custom query for loading an entity's collection in non-fetching scenarios (i.e., loading the collection itself as the "root" of the result).- 作者:
- Steve Ebersole
-
-
构造器概要
构造器 构造器 说明 CollectionReturn(String alias, String ownerEntityName, String ownerProperty, CollectionAliases collectionAliases, EntityAliases elementEntityAliases, LockMode lockMode)
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 CollectionAliasesgetCollectionAliases()EntityAliasesgetElementEntityAliases()StringgetOwnerEntityName()Returns the class owning the collection.StringgetOwnerProperty()Returns the name of the property representing the collection from thegetOwnerEntityName().-
从类继承的方法 org.hibernate.loader.custom.NonScalarReturn
getAlias, getLockMode
-
-
-
-
构造器详细资料
-
CollectionReturn
public CollectionReturn(String alias, String ownerEntityName, String ownerProperty, CollectionAliases collectionAliases, EntityAliases elementEntityAliases, LockMode lockMode)
-
-
方法详细资料
-
getOwnerEntityName
public String getOwnerEntityName()
Returns the class owning the collection.- 返回:
- The class owning the collection.
-
getOwnerProperty
public String getOwnerProperty()
Returns the name of the property representing the collection from thegetOwnerEntityName().- 返回:
- The name of the property representing the collection on the owner class.
-
getCollectionAliases
public CollectionAliases getCollectionAliases()
-
getElementEntityAliases
public EntityAliases getElementEntityAliases()
-
-