类 AliasedTupleSubsetResultTransformer
- java.lang.Object
-
- org.hibernate.transform.BasicTransformerAdapter
-
- org.hibernate.transform.AliasedTupleSubsetResultTransformer
-
public abstract class AliasedTupleSubsetResultTransformer extends BasicTransformerAdapter implements TupleSubsetResultTransformer
An implementation of TupleSubsetResultTransformer that ignores a tuple element if its corresponding alias is null.- 作者:
- Gail Badner
- 另请参阅:
- 序列化表格
-
-
构造器概要
构造器 构造器 说明 AliasedTupleSubsetResultTransformer()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 boolean[]includeInTransform(String[] aliases, int tupleLength)Returns an array with the i-th element indicating whether the i-th element of the tuple is included in the transformed value.-
从类继承的方法 org.hibernate.transform.BasicTransformerAdapter
transformList, transformTuple
-
从类继承的方法 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
从接口继承的方法 org.hibernate.transform.ResultTransformer
transformList, transformTuple
-
从接口继承的方法 org.hibernate.transform.TupleSubsetResultTransformer
isTransformedValueATupleElement
-
-
-
-
方法详细资料
-
includeInTransform
public boolean[] includeInTransform(String[] aliases, int tupleLength)
从接口复制的说明:TupleSubsetResultTransformerReturns an array with the i-th element indicating whether the i-th element of the tuple is included in the transformed value.- 指定者:
includeInTransform在接口中TupleSubsetResultTransformer- 参数:
aliases- - the aliases that correspond to the tupletupleLength- - the number of elements in the tuple- 返回:
- array with the i-th element indicating whether the i-th element of the tuple is included in the transformed value.
-
-