Package | Description |
---|---|
com.querydsl.jdo |
JDO support
|
Modifier and Type | Method and Description |
---|---|
JDOQuery<T> |
JDOQuery.clone(javax.jdo.PersistenceManager persistenceManager)
Clone the state of this query to a new
JDOQuery instance with the given PersistenceManager |
JDOQuery<?> |
JDOQueryFactory.from(EntityPath<?> from) |
JDOQuery<?> |
JDOQueryFactory.query() |
JDOQuery<Tuple> |
JDOQueryFactory.select(Expression<?>... exprs)
Create a new
JDOQuery instance with the given projection |
JDOQuery<Tuple> |
JDOQuery.select(Expression<?>... exprs) |
static JDOQuery<Tuple> |
JDOExpressions.select(Expression<?>... exprs)
Create a new detached
JDOQuery instance with the given projection |
<T> JDOQuery<T> |
JDOQueryFactory.select(Expression<T> expr)
Create a new
JDOQuery instance with the given projection |
static <T> JDOQuery<T> |
JDOExpressions.select(Expression<T> expr)
Create a new detached
JDOQuery instance with the given projection |
<U> JDOQuery<U> |
JDOQuery.select(Expression<U> expr) |
JDOQuery<Tuple> |
JDOQueryFactory.selectDistinct(Expression<?>... exprs)
Create a new
JDOQuery instance with the given projection |
static JDOQuery<Tuple> |
JDOExpressions.selectDistinct(Expression<?>... exprs)
Create a new detached
JDOQuery instance with the given projection |
<T> JDOQuery<T> |
JDOQueryFactory.selectDistinct(Expression<T> expr)
Create a new
JDOQuery instance with the given projection |
static <T> JDOQuery<T> |
JDOExpressions.selectDistinct(Expression<T> expr)
Create a new detached
JDOQuery instance with the given projection |
<T> JDOQuery<T> |
JDOQueryFactory.selectFrom(EntityPath<T> expr)
Create a new
JDOQuery instance with the given projection |
static <T> JDOQuery<T> |
JDOExpressions.selectFrom(EntityPath<T> expr)
Create a new detached
JDOQuery instance with the given projection |
JDOQuery<Integer> |
JDOQueryFactory.selectOne()
Create a new
JDOQuery instance with the projection 1 |
static JDOQuery<Integer> |
JDOExpressions.selectOne()
Create a new detached
JDOQuery instance with the projection 1 |
JDOQuery<Integer> |
JDOQueryFactory.selectZero()
Create a new
JDOQuery instance with the projection 0 |
static JDOQuery<Integer> |
JDOExpressions.selectZero()
Create a new detached
JDOQuery instance with the given projection 0 |
Copyright © 2007–2016 Querydsl. All rights reserved.