RT
- return type of projectionpublic interface Union<RT> extends SubQueryExpression<RT>, Fetchable<RT>
Union
defines an interface for Union queriesModifier and Type | Method and Description |
---|---|
Expression<RT> |
as(Path<RT> alias)
Create an alias for the expression
|
Expression<RT> |
as(String alias)
Create an alias for the expression
|
Union<RT> |
groupBy(Expression<?>... o)
Defines the grouping/aggregation expressions
|
Union<RT> |
having(Predicate... o)
Defines the filters for aggregation
|
com.mysema.commons.lang.CloseableIterator<RT> |
iterate()
Get the projection as a typed Iterator
|
List<RT> |
list()
Deprecated.
|
Union<RT> |
orderBy(OrderSpecifier<?>... o)
Define the ordering of the query results
|
getMetadata
accept, getType
fetch, fetchCount, fetchFirst, fetchOne, fetchResults
@Deprecated List<RT> list()
Fetchable.fetch()
com.mysema.commons.lang.CloseableIterator<RT> iterate()
Union<RT> groupBy(Expression<?>... o)
o
- group byUnion<RT> having(Predicate... o)
o
- having conditionsUnion<RT> orderBy(OrderSpecifier<?>... o)
o
- orderExpression<RT> as(String alias)
alias
- aliasExpression<RT> as(Path<RT> alias)
alias
- aliasCopyright © 2007–2016 Querydsl. All rights reserved.