当前页面:
在线文档首页 >
Hibernate 3.2.4 正式版 API 英文文档
NativeSQLQueryCollectionReturn (Hibernate API Documentation) - Hibernate 3.2.4 正式版 API 英文文档
org.hibernate.engine.query.sql
Class NativeSQLQueryCollectionReturn
java.lang.Object
org.hibernate.engine.query.sql.NativeSQLQueryNonScalarReturn
org.hibernate.engine.query.sql.NativeSQLQueryCollectionReturn
- All Implemented Interfaces:
- NativeSQLQueryReturn, Serializable
- public class NativeSQLQueryCollectionReturn
- extends NativeSQLQueryNonScalarReturn
Represents a return defined as part of a native sql query which
names a collection role in the form {classname}.{collectionrole}; it
is used in defining a custom sql query for loading an entity's
collection in non-fetching scenarios (i.e., loading the collection
itself as the "root" of the result).
- Author:
- Steve Ebersole
- See Also:
- Serialized Form
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
NativeSQLQueryCollectionReturn
public NativeSQLQueryCollectionReturn(String alias,
String ownerEntityName,
String ownerProperty,
Map propertyResults,
LockMode lockMode)
- Construct a native-sql return representing a collection initializer
- Parameters:
alias
- The result aliasownerEntityName
- The entity-name of the entity owning the collection
to be initialized.ownerProperty
- The property name (on the owner) which represents
the collection to be initialized.propertyResults
- Any user-supplied column->property mappingslockMode
- The lock mode to apply to the collection.
getOwnerEntityName
public String getOwnerEntityName()
- Returns the class owning the collection.
- Returns:
- The class owning the collection.
getOwnerProperty
public String getOwnerProperty()
- Returns the name of the property representing the collection from the
getOwnerEntityName()
.
- Returns:
- The name of the property representing the collection on the owner class.