File
Doc
Category
Size
Date
Package
ScalarReturn.java
API Doc
Hibernate 3.2.5
530
Thu Jun 15 00:21:06 BST 2006
org.hibernate.loader.custom
ScalarReturn
java.lang.Object
public class ScalarReturn extends Object implements Return
Represent a scalar (aka simple value) return within a query result.
author
Steve Ebersole
Fields Summary
private final org.hibernate.type.Type
type
private final String
columnAlias
Constructors Summary
public ScalarReturn
(
org.hibernate.type.Type
type,
String
columnAlias)
this.type = type; this.columnAlias = columnAlias;
Methods Summary
public
java.lang.String
getColumnAlias
()
return columnAlias;
public
org.hibernate.type.Type
getType
()
return type;
Java Code Source