|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.hibernate.transform.CacheableResultTransformer
public class CacheableResultTransformer
A ResultTransformer that is used to transform tuples to a value(s) that can be cached.
Method Summary | |
---|---|
static CacheableResultTransformer |
create(ResultTransformer transformer,
String[] aliases,
boolean[] includeInTuple)
Returns a CacheableResultTransformer that is used to transform tuples to a value(s) that can be cached. |
boolean |
equals(Object o)
|
Type[] |
getCachedResultTypes(Type[] tupleResultTypes)
|
int |
hashCode()
|
List |
retransformResults(List transformedResults,
String[] aliases,
ResultTransformer transformer,
boolean[] includeInTuple)
Re-transforms, if necessary, a List of values previously transformed by this (or an equivalent) CacheableResultTransformer. |
List |
transformList(List list)
Here we have an opportunity to perform transformation on the query result as a whole. |
Object |
transformTuple(Object[] tuple,
String[] aliases)
Tuples are the elements making up each "row" of the query result. |
List |
untransformToTuples(List results)
Untransforms, if necessary, a List of values previously transformed by this (or an equivalent) CacheableResultTransformer. |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public static CacheableResultTransformer create(ResultTransformer transformer, String[] aliases, boolean[] includeInTuple)
transformer
- - result transformer that will ultimately be
be used (after caching results)aliases
- - the aliases that correspond to the tuple;
if it is non-null, its length must equal the number
of true elements in includeInTuple[]includeInTuple
- - array with the i-th element indicating
whether the i-th expression returned by a query is
included in the tuple; the number of true values equals
the length of the tuple that will be transformed;
must be non-null
public Object transformTuple(Object[] tuple, String[] aliases)
ResultTransformer
transformTuple
in interface ResultTransformer
tuple
- The result elementsaliases
- The result aliases ("parallel" array to tuple)
public List retransformResults(List transformedResults, String[] aliases, ResultTransformer transformer, boolean[] includeInTuple)
transformedResults
- - results that were previously transformedaliases
- - the aliases that correspond to the untransformed tuple;transformer
- - the transformer for the re-transformationincludeInTuple
- indicates the indexes of
public List untransformToTuples(List results)
results
- - results that were previously transformed
public Type[] getCachedResultTypes(Type[] tupleResultTypes)
public List transformList(List list)
ResultTransformer
transformList
in interface ResultTransformer
list
- The result.
public boolean equals(Object o)
equals
in class Object
public int hashCode()
hashCode
in class Object
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |