Package org.hibernate.criterion
Class SQLProjection
- java.lang.Object
-
- org.hibernate.criterion.SQLProjection
-
- All Implemented Interfaces:
java.io.Serializable
,Projection
public class SQLProjection extends java.lang.Object implements Projection
A SQL fragment. The string {alias} will be replaced by the alias of the root entity.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
SQLProjection(java.lang.String sql, java.lang.String[] columnAliases, Type[] types)
protected
SQLProjection(java.lang.String sql, java.lang.String groupBy, java.lang.String[] columnAliases, Type[] types)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String[]
getAliases()
Get the criteria-level aliases for this projection (ie.java.lang.String[]
getColumnAliases(int loc)
Get the SQL column aliases used by this projection for the columns it writes for inclusion into the SELECT clause (Projection.toSqlString(org.hibernate.Criteria, int, org.hibernate.criterion.CriteriaQuery)
.java.lang.String[]
getColumnAliases(java.lang.String alias, int loc)
Get the SQL column aliases used by this projection for the columns it writes for inclusion into the SELECT clause (Projection.toSqlString(org.hibernate.Criteria, int, org.hibernate.criterion.CriteriaQuery)
for a particular criteria-level alias.Type[]
getTypes(java.lang.String alias, Criteria crit, CriteriaQuery criteriaQuery)
Get the return types for a particular user-visible alias.Type[]
getTypes(Criteria crit, CriteriaQuery criteriaQuery)
Types returned by the rendered SQLfragment
.boolean
isGrouped()
Is this projection fragment (SELECT clause) also part of the GROUP BYjava.lang.String
toGroupSqlString(Criteria criteria, CriteriaQuery criteriaQuery)
Render the SQL fragment to be used in the GROUP BY clausejava.lang.String
toSqlString(Criteria criteria, int loc, CriteriaQuery criteriaQuery)
Render the SQL fragment to be used in the SELECT clause.java.lang.String
toString()
-
-
-
Method Detail
-
toSqlString
public java.lang.String toSqlString(Criteria criteria, int loc, CriteriaQuery criteriaQuery)
Description copied from interface:Projection
Render the SQL fragment to be used in the SELECT clause.- Specified by:
toSqlString
in interfaceProjection
- Parameters:
criteria
- The local criteria to which this project is attached (for resolution).loc
- The number of columns rendered in the SELECT clause before this projection. Generally speaking this is useful to ensure uniqueness of the individual columns aliases.criteriaQuery
- The overall criteria query instance.- Returns:
- The SQL fragment to plug into the SELECT
-
toGroupSqlString
public java.lang.String toGroupSqlString(Criteria criteria, CriteriaQuery criteriaQuery)
Description copied from interface:Projection
Render the SQL fragment to be used in the GROUP BY clause- Specified by:
toGroupSqlString
in interfaceProjection
- Parameters:
criteria
- The local criteria to which this project is attached (for resolution).criteriaQuery
- The overall criteria query instance.- Returns:
- The SQL fragment to plug into the GROUP BY
-
getTypes
public Type[] getTypes(Criteria crit, CriteriaQuery criteriaQuery)
Description copied from interface:Projection
Types returned by the rendered SQLfragment
. In other words what are the types that would represent the values this projection asked to be pulled into the result set?- Specified by:
getTypes
in interfaceProjection
- Parameters:
crit
- The local criteria to which this project is attached (for resolution).criteriaQuery
- The overall criteria query instance.- Returns:
- The return types.
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
getAliases
public java.lang.String[] getAliases()
Description copied from interface:Projection
Get the criteria-level aliases for this projection (ie. the ones that will be passed to theResultTransformer
)- Specified by:
getAliases
in interfaceProjection
- Returns:
- The aliases
-
getColumnAliases
public java.lang.String[] getColumnAliases(int loc)
Description copied from interface:Projection
Get the SQL column aliases used by this projection for the columns it writes for inclusion into the SELECT clause (Projection.toSqlString(org.hibernate.Criteria, int, org.hibernate.criterion.CriteriaQuery)
. Hibernate always uses column aliases to extract data from the JDBCResultSet
, so it is important that these be implemented correctly in order for Hibernate to be able to extract these val;ues correctly.- Specified by:
getColumnAliases
in interfaceProjection
- Parameters:
loc
- Just as inProjection.toSqlString(org.hibernate.Criteria, int, org.hibernate.criterion.CriteriaQuery)
, represents the number of columns rendered prior to this projection.- Returns:
- The columns aliases.
-
isGrouped
public boolean isGrouped()
Description copied from interface:Projection
Is this projection fragment (SELECT clause) also part of the GROUP BY- Specified by:
isGrouped
in interfaceProjection
- Returns:
- True if the projection is also part of the GROUP BY; false otherwise.
-
getTypes
public Type[] getTypes(java.lang.String alias, Criteria crit, CriteriaQuery criteriaQuery)
Description copied from interface:Projection
Get the return types for a particular user-visible alias. Differs fromProjection.getTypes(org.hibernate.Criteria, CriteriaQuery)
in that here we are only interested in the types related to the given criteria-level alias.- Specified by:
getTypes
in interfaceProjection
- Parameters:
alias
- The criteria-level alias for which to find types.crit
- The local criteria to which this project is attached (for resolution).criteriaQuery
- The overall criteria query instance.- Returns:
- The return types; expected to return null if this projection does not understand this alias.
-
getColumnAliases
public java.lang.String[] getColumnAliases(java.lang.String alias, int loc)
Description copied from interface:Projection
Get the SQL column aliases used by this projection for the columns it writes for inclusion into the SELECT clause (Projection.toSqlString(org.hibernate.Criteria, int, org.hibernate.criterion.CriteriaQuery)
for a particular criteria-level alias.- Specified by:
getColumnAliases
in interfaceProjection
- Parameters:
alias
- The criteria-level aliasloc
- Just as inProjection.toSqlString(org.hibernate.Criteria, int, org.hibernate.criterion.CriteriaQuery)
, represents the number of columns rendered prior to this projection.- Returns:
- The columns aliases pertaining to a particular criteria-level alias; expected to return null if this projection does not understand this alias.
-
-