org.hibernate.transform
Class AliasToBeanResultTransformer
java.lang.Object
org.hibernate.transform.BasicTransformerAdapter
org.hibernate.transform.AliasedTupleSubsetResultTransformer
org.hibernate.transform.AliasToBeanResultTransformer
- All Implemented Interfaces:
- Serializable, ResultTransformer, TupleSubsetResultTransformer
public class AliasToBeanResultTransformer
- extends AliasedTupleSubsetResultTransformer
Result transformer that allows to transform a result to
a user specified class which will be populated via setter
methods or fields matching the alias names.
List resultWithAliasedBean = s.createCriteria(Enrolment.class)
.createAlias("student", "st")
.createAlias("course", "co")
.setProjection( Projections.projectionList()
.add( Projections.property("co.description"), "courseDescription" )
)
.setResultTransformer( new AliasToBeanResultTransformer(StudentDTO.class) )
.list();
StudentDTO dto = (StudentDTO)resultWithAliasedBean.get(0);
- See Also:
- Serialized Form
AliasToBeanResultTransformer
public AliasToBeanResultTransformer(Class resultClass)
isTransformedValueATupleElement
public boolean isTransformedValueATupleElement(String[] aliases,
int tupleLength)
- When a tuple is transformed, is the result a single element of the tuple?
- Parameters:
aliases
- - the aliases that correspond to the tupletupleLength
- - the number of elements in the tuple
- Returns:
- true, if the transformed value is a single element of the tuple;
false, otherwise.
transformTuple
public Object transformTuple(Object[] tuple,
String[] aliases)
- Description copied from interface:
ResultTransformer
- Tuples are the elements making up each "row" of the query result.
The contract here is to transform these elements into the final
row.
- Specified by:
transformTuple
in interface ResultTransformer
- Overrides:
transformTuple
in class BasicTransformerAdapter
- Parameters:
tuple
- The result elementsaliases
- The result aliases ("parallel" array to tuple)
- Returns:
- The transformed row.
equals
public boolean equals(Object o)
- Overrides:
equals
in class Object
hashCode
public int hashCode()
- Overrides:
hashCode
in class Object
Copyright © 2001-2012 Red Hat, Inc. All Rights Reserved.