| Package | Description |
|---|---|
| com.mysema.query |
Contains basic Query elements
|
| com.mysema.query.support |
Various support classes
|
| com.mysema.query.types |
Contains Querydsl grammar types
|
| Modifier and Type | Method and Description |
|---|---|
Tuple |
Projectable.singleResult(Expression<?>... args)
return a single result for the given projection or null if no result is found
|
Tuple |
Projectable.uniqueResult(Expression<?>... args)
return a unique result for the given projection or null if no result is found
|
| Modifier and Type | Method and Description |
|---|---|
com.mysema.commons.lang.CloseableIterator<Tuple> |
Projectable.iterate(Expression<?>... args)
iterate over the results for the given projection
|
ListSubQuery<Tuple> |
Detachable.list(Expression<?>... args)
Create a multi row subquery expression for the given projection
|
List<Tuple> |
Projectable.list(Expression<?>... args)
list the results for the given projection
An empty list is returned for no results.
|
ListSubQuery<Tuple> |
Detachable.list(Object... args)
Create a multi row subquery expression for the given projection
|
SearchResults<Tuple> |
Projectable.listResults(Expression<?>... args)
list the results for the given projection
|
SimpleSubQuery<Tuple> |
Detachable.unique(Expression<?>... args)
Create a single row subquery expression for the given projection
|
SimpleSubQuery<Tuple> |
Detachable.unique(Object... args)
Create a single row subquery expression for the given projection
|
| Modifier and Type | Method and Description |
|---|---|
Tuple |
ProjectableAdapter.singleResult(Expression<?>... args) |
Tuple |
ProjectableQuery.singleResult(Expression<?>... args) |
Tuple |
ProjectableAdapter.uniqueResult(Expression<?>... args) |
| Modifier and Type | Method and Description |
|---|---|
Expression<Tuple> |
QueryMixin.createProjection(Expression<?>[] args) |
com.mysema.commons.lang.CloseableIterator<Tuple> |
ProjectableAdapter.iterate(Expression<?>... args) |
List<Tuple> |
ProjectableQuery.list(Expression<?>... args) |
ListSubQuery<Tuple> |
DetachableMixin.list(Expression<?>... args) |
ListSubQuery<Tuple> |
DetachableAdapter.list(Expression<?>... args) |
ListSubQuery<Tuple> |
DetachableQuery.list(Expression<?>... args) |
List<Tuple> |
ProjectableAdapter.list(Expression<?>[] args) |
ListSubQuery<Tuple> |
DetachableAdapter.list(Expression<?> first,
Expression<?> second,
Expression<?>... rest) |
ListSubQuery<Tuple> |
DetachableMixin.list(Object... args) |
ListSubQuery<Tuple> |
DetachableAdapter.list(Object... args) |
ListSubQuery<Tuple> |
DetachableQuery.list(Object... args) |
ListSubQuery<Tuple> |
DetachableMixin.list(Object arg) |
ListSubQuery<Tuple> |
DetachableQuery.list(Object arg) |
static SimpleExpression<Tuple> |
Expressions.list(SimpleExpression<?>... exprs)
Combine the given expressions into a list expression
|
SearchResults<Tuple> |
ProjectableAdapter.listResults(Expression<?>... args) |
SimpleSubQuery<Tuple> |
DetachableMixin.unique(Expression<?>... args) |
SimpleSubQuery<Tuple> |
DetachableAdapter.unique(Expression<?>... args) |
SimpleSubQuery<Tuple> |
DetachableQuery.unique(Expression<?>... args) |
SimpleSubQuery<Tuple> |
DetachableAdapter.unique(Expression<?> first,
Expression<?> second,
Expression<?>... rest) |
SimpleSubQuery<Tuple> |
DetachableMixin.unique(Object... args) |
SimpleSubQuery<Tuple> |
DetachableAdapter.unique(Object... args) |
SimpleSubQuery<Tuple> |
DetachableQuery.unique(Object... args) |
| Modifier and Type | Method and Description |
|---|---|
Tuple |
QTuple.newInstance(Object... a) |
| Modifier and Type | Method and Description |
|---|---|
protected abstract T |
MappingProjection.map(Tuple row)
Creates a result object from the given row.
|
Copyright © 2007–2015 Querydsl. All rights reserved.