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.hibernate |
JPQL for Hibernate
|
com.mysema.query.jpa.hibernate.sql | |
com.mysema.query.jpa.impl |
JPQL for JPA
|
com.mysema.query.jpa.sql | |
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 projection expression for the given projection
|
java.util.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(java.lang.Object... args)
Create a projection expression for the given projection
Non expression arguments are converted into constant expressions
|
SearchResults<Tuple> |
Projectable.listResults(Expression<?>... args)
list the results for the given projection
|
SimpleSubQuery<Tuple> |
Detachable.unique(Expression<?>... args)
Create a projection expression for the given projection
|
SimpleSubQuery<Tuple> |
Detachable.unique(java.lang.Object... args)
Create a projection expression for the given projection
Non expression arguments are converted into constant expressions
|
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) |
java.util.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) |
java.util.List<Tuple> |
AbstractJDOQuery.list(Expression<?>... args) |
SearchResults<Tuple> |
AbstractJDOQuery.listResults(Expression<?>... args) |
Modifier and Type | Method and Description |
---|---|
Tuple |
JDOSQLQuery.uniqueResult(Expression<?>... args) |
Modifier and Type | Method and Description |
---|---|
com.mysema.commons.lang.CloseableIterator<Tuple> |
JDOSQLQuery.iterate(Expression<?>... args) |
java.util.List<Tuple> |
JDOSQLQuery.list(Expression<?>... args) |
SearchResults<Tuple> |
JDOSQLQuery.listResults(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. |
java.util.List<Tuple> |
AbstractHibernateQuery.list(Expression<?>... args) |
SearchResults<Tuple> |
AbstractHibernateQuery.listResults(Expression<?>... args) |
Modifier and Type | Method and Description |
---|---|
Tuple |
AbstractHibernateSQLQuery.uniqueResult(Expression<?>... args) |
Modifier and Type | Method and Description |
---|---|
com.mysema.commons.lang.CloseableIterator<Tuple> |
AbstractHibernateSQLQuery.iterate(Expression<?>... args) |
java.util.List<Tuple> |
AbstractHibernateSQLQuery.list(Expression<?>... projection) |
SearchResults<Tuple> |
AbstractHibernateSQLQuery.listResults(Expression<?>... args) |
Modifier and Type | Method and Description |
---|---|
Tuple |
AbstractJPAQuery.uniqueResult(Expression<?>... args) |
Modifier and Type | Method and Description |
---|---|
com.mysema.commons.lang.CloseableIterator<Tuple> |
AbstractJPAQuery.iterate(Expression<?>... args) |
java.util.List<Tuple> |
AbstractJPAQuery.list(Expression<?>... args) |
SearchResults<Tuple> |
AbstractJPAQuery.listResults(Expression<?>... args) |
Modifier and Type | Method and Description |
---|---|
Tuple |
AbstractJPASQLQuery.uniqueResult(Expression<?>... args) |
Modifier and Type | Method and Description |
---|---|
com.mysema.commons.lang.CloseableIterator<Tuple> |
AbstractJPASQLQuery.iterate(Expression<?>... args) |
java.util.List<Tuple> |
AbstractJPASQLQuery.list(Expression<?>... args) |
SearchResults<Tuple> |
AbstractJPASQLQuery.listResults(Expression<?>... args) |
Modifier and Type | Method and Description |
---|---|
Tuple |
AbstractSQLQuery.uniqueResult(Expression<?>... expr) |
Modifier and Type | Method and Description |
---|---|
Expression<Tuple> |
ForeignKey.getProjection() |
Expression<Tuple> |
PrimaryKey.getProjection() |
com.mysema.commons.lang.CloseableIterator<Tuple> |
AbstractSQLQuery.iterate(Expression<?>... args) |
java.util.List<Tuple> |
AbstractSQLQuery.list(Expression<?>... args) |
SearchResults<Tuple> |
AbstractSQLQuery.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 |
---|---|
com.mysema.commons.lang.CloseableIterator<Tuple> |
ProjectableAdapter.iterate(Expression<?>... args) |
java.util.List<Tuple> |
ProjectableQuery.list(Expression<?>... args) |
ListSubQuery<Tuple> |
DetachableMixin.list(Expression<?>... args) |
ListSubQuery<Tuple> |
DetachableQuery.list(Expression<?>... args) |
ListSubQuery<Tuple> |
DetachableAdapter.list(Expression<?>... args) |
java.util.List<Tuple> |
ProjectableAdapter.list(Expression<?>[] args) |
ListSubQuery<Tuple> |
DetachableAdapter.list(Expression<?> first,
Expression<?> second,
Expression<?>... rest) |
ListSubQuery<Tuple> |
DetachableMixin.list(java.lang.Object... args) |
ListSubQuery<Tuple> |
DetachableQuery.list(java.lang.Object... args) |
ListSubQuery<Tuple> |
DetachableAdapter.list(java.lang.Object... args) |
ListSubQuery<Tuple> |
DetachableMixin.list(java.lang.Object arg) |
ListSubQuery<Tuple> |
DetachableQuery.list(java.lang.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(java.lang.Object... args) |
SimpleSubQuery<Tuple> |
DetachableQuery.unique(java.lang.Object... args) |
SimpleSubQuery<Tuple> |
DetachableAdapter.unique(java.lang.Object... args) |
Modifier and Type | Method and Description |
---|---|
Tuple |
QTuple.newInstance(java.lang.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-2013 Mysema Ltd. All Rights Reserved.