当前页面:
在线文档首页 >
Hibernate 3.2.3 正式版 API 英文文档
NativeSQLQueryRootReturn (Hibernate API Documentation) - Hibernate 3.2.3 正式版 API 英文文档
org.hibernate.engine.query.sql
Class NativeSQLQueryRootReturn
java.lang.Object
org.hibernate.engine.query.sql.NativeSQLQueryNonScalarReturn
org.hibernate.engine.query.sql.NativeSQLQueryRootReturn
- All Implemented Interfaces:
- NativeSQLQueryReturn, Serializable
- public class NativeSQLQueryRootReturn
- extends NativeSQLQueryNonScalarReturn
Represents a return defined as part of a native sql query which
names a "root" entity. A root entity means it is explicitly a
"column" in the result, as opposed to a fetched relationship or role.
- 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 |
NativeSQLQueryRootReturn
public NativeSQLQueryRootReturn(String alias,
String entityName,
LockMode lockMode)
- Construct a return representing an entity returned at the root
of the result.
- Parameters:
alias
- The result aliasentityName
- The entity name.lockMode
- The lock mode to apply
NativeSQLQueryRootReturn
public NativeSQLQueryRootReturn(String alias,
String entityName,
Map propertyResults,
LockMode lockMode)
- Parameters:
alias
- The result aliasentityName
- The entity name.propertyResults
- Any user-supplied column->property mappingslockMode
- The lock mode to apply
getReturnEntityName
public String getReturnEntityName()
- The name of the entity to be returned.
- Returns:
- The entity name