@Immutable public class QTuple extends FactoryExpressionBase<Tuple>
Usage example:
List<Tuple> result = query.from(employee).list(new QTuple(employee.firstName, employee.lastName));
for (Tuple row : result) {
System.out.println("firstName " + row.get(employee.firstName));
System.out.println("lastName " + row.get(employee.lastName));
}
Since Tuple projection is the default for multi column projections, the above is equivalent to this code
List<Tuple> result = query.from(employee).list(employee.firstName, employee.lastName);
for (Tuple row : result) {
System.out.println("firstName " + row.get(employee.firstName));
System.out.println("lastName " + row.get(employee.lastName));
}
| Constructor and Description |
|---|
QTuple(Expression<?>... args)
Create a new QTuple instance
|
QTuple(Expression<?>[]... args)
Create a new QTuple instance
|
QTuple(com.google.common.collect.ImmutableList<Expression<?>> args)
Create a new QTuple instance
|
| Modifier and Type | Method and Description |
|---|---|
<R,C> R |
accept(Visitor<R,C> v,
C context)
Accept the visitor with the given context
|
boolean |
equals(Object obj) |
List<Expression<?>> |
getArgs()
Get the invocation arguments
|
Tuple |
newInstance(Object... a)
Create a projection with the given arguments
|
skipNullsgetType, hashCode, toStringclone, finalize, getClass, notify, notifyAll, wait, wait, waitgetTypepublic QTuple(Expression<?>... args)
args - public QTuple(com.google.common.collect.ImmutableList<Expression<?>> args)
args - public QTuple(Expression<?>[]... args)
args - public Tuple newInstance(Object... a)
FactoryExpressionpublic <R,C> R accept(Visitor<R,C> v, C context)
ExpressionR - return typeC - context typev - visitorcontext - context of visitpublic boolean equals(Object obj)
equals in class FactoryExpressionBase<Tuple>public List<Expression<?>> getArgs()
FactoryExpressionCopyright © 2007–2015 Querydsl. All rights reserved.