Package | Description |
---|---|
com.mysema.query |
Contains basic Query elements
|
com.mysema.query.collections |
Implementations of Querydsl query interfaces for JavaBean collections
|
com.mysema.query.jdo |
JDOQL support for Querydsl
|
com.mysema.query.jdo.sql | |
com.mysema.query.jpa |
Query implementations for HQL and JPAQL
|
com.mysema.query.jpa.hibernate |
JPQL for Hibernate
|
com.mysema.query.jpa.impl |
JPQL for JPA
|
com.mysema.query.sql |
SQL/JDBC support for Querydsl
|
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 |
AbstractCollQuery.uniqueResult(Expression<?>... args) |
Modifier and Type | Method and Description |
---|---|
com.mysema.commons.lang.CloseableIterator<Tuple> |
AbstractCollQuery.iterate(Expression<?>... args) |
List<Tuple> |
AbstractCollQuery.list(Expression<?>... args) |
SearchResults<Tuple> |
AbstractCollQuery.listResults(Expression<?>... args) |
Modifier and Type | Method and Description |
---|---|
Tuple |
AbstractJDOQuery.uniqueResult(Expression<?>... args) |
Modifier and Type | Method and Description |
---|---|
com.mysema.commons.lang.CloseableIterator<Tuple> |
AbstractJDOQuery.iterate(Expression<?>... args) |
List<Tuple> |
AbstractJDOQuery.list(Expression<?>... args) |
SearchResults<Tuple> |
AbstractJDOQuery.listResults(Expression<?>... args) |
Modifier and Type | Method and Description |
---|---|
Tuple |
AbstractSQLQuery.uniqueResult(Expression<?>... args) |
Modifier and Type | Method and Description |
---|---|
com.mysema.commons.lang.CloseableIterator<Tuple> |
AbstractSQLQuery.iterate(Expression<?>... args) |
List<Tuple> |
AbstractSQLQuery.list(Expression<?>... args) |
SearchResults<Tuple> |
AbstractSQLQuery.listResults(Expression<?>... args) |
Modifier and Type | Method and Description |
---|---|
Tuple |
JPAQueryBase.uniqueResult(Expression<?>... args) |
Modifier and Type | Method and Description |
---|---|
Tuple |
AbstractHibernateQuery.uniqueResult(Expression<?>... args) |
Modifier and Type | Method and Description |
---|---|
com.mysema.commons.lang.CloseableIterator<Tuple> |
AbstractHibernateQuery.iterate(Expression<?>... args)
Return the query results as an Iterator.
Entities returned as results are initialized on demand. |
List<Tuple> |
AbstractHibernateQuery.list(Expression<?>... args) |
SearchResults<Tuple> |
AbstractHibernateQuery.listResults(Expression<?>... args) |
Modifier and Type | Method and Description |
---|---|
com.mysema.commons.lang.CloseableIterator<Tuple> |
AbstractJPAQuery.iterate(Expression<?>... args) |
List<Tuple> |
AbstractJPAQuery.list(Expression<?>... args) |
SearchResults<Tuple> |
AbstractJPAQuery.listResults(Expression<?>... args) |
Modifier and Type | Method and Description |
---|---|
Tuple |
ProjectableSQLQuery.uniqueResult(Expression<?>... args) |
Modifier and Type | Method and Description |
---|---|
Expression<Tuple> |
ForeignKey.getProjection() |
Expression<Tuple> |
PrimaryKey.getProjection() |
com.mysema.commons.lang.CloseableIterator<Tuple> |
ProjectableSQLQuery.iterate(Expression<?>... args) |
List<Tuple> |
ProjectableSQLQuery.list(Expression<?>... args) |
SearchResults<Tuple> |
ProjectableSQLQuery.listResults(Expression<?>... args) |
Modifier and Type | Method and Description |
---|---|
BooleanExpression |
ForeignKey.in(CollectionExpression<?,Tuple> coll) |
BooleanExpression |
PrimaryKey.in(CollectionExpression<?,Tuple> coll) |
Modifier and Type | Method and Description |
---|---|
Tuple |
ProjectableQuery.singleResult(Expression<?>... args) |
Tuple |
ProjectableAdapter.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> |
DetachableQuery.list(Expression<?>... args) |
ListSubQuery<Tuple> |
DetachableAdapter.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> |
DetachableQuery.list(Object... args) |
ListSubQuery<Tuple> |
DetachableAdapter.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> |
DetachableQuery.unique(Expression<?>... args) |
SimpleSubQuery<Tuple> |
DetachableAdapter.unique(Expression<?>... args) |
SimpleSubQuery<Tuple> |
DetachableAdapter.unique(Expression<?> first,
Expression<?> second,
Expression<?>... rest) |
SimpleSubQuery<Tuple> |
DetachableMixin.unique(Object... args) |
SimpleSubQuery<Tuple> |
DetachableQuery.unique(Object... args) |
SimpleSubQuery<Tuple> |
DetachableAdapter.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 Mysema Ltd. All rights reserved.