public interface JPQLQueryFactory extends QueryFactory<JPQLQuery<?>>
| Modifier and Type | Method and Description |
|---|---|
DeleteClause<?> |
delete(EntityPath<?> path)
Create a new DELETE clause
|
JPQLQuery<?> |
from(EntityPath<?> from)
Create a new Query with the given source
|
JPQLQuery<Tuple> |
select(Expression<?>... exprs)
Create a new JPQLQuery instance with the given projection
|
<T> JPQLQuery<T> |
select(Expression<T> expr)
Create a new JPQLQuery instance with the given projection
|
JPQLQuery<Tuple> |
selectDistinct(Expression<?>... exprs)
Create a new JPQLQuery instance with the given projection
|
<T> JPQLQuery<T> |
selectDistinct(Expression<T> expr)
Create a new JPQLQuery instance with the given projection
|
<T> JPQLQuery<T> |
selectFrom(EntityPath<T> from)
Create a new JPQLQuery instance with the given source and projection
|
JPQLQuery<Integer> |
selectOne()
Create a new JPQLQuery instance with the projection one
|
JPQLQuery<Integer> |
selectZero()
Create a new JPQLQuery instance with the projection zero
|
UpdateClause<?> |
update(EntityPath<?> path)
Create a new UPDATE clause
|
queryDeleteClause<?> delete(EntityPath<?> path)
path - entity to delete from<T> JPQLQuery<T> select(Expression<T> expr)
T - expr - projectionJPQLQuery<Tuple> select(Expression<?>... exprs)
exprs - projection<T> JPQLQuery<T> selectDistinct(Expression<T> expr)
T - expr - projectionJPQLQuery<Tuple> selectDistinct(Expression<?>... exprs)
exprs - projectionJPQLQuery<Integer> selectOne()
JPQLQuery<Integer> selectZero()
<T> JPQLQuery<T> selectFrom(EntityPath<T> from)
T - from - projection and sourceJPQLQuery<?> from(EntityPath<?> from)
from - fromUpdateClause<?> update(EntityPath<?> path)
path - entity to updateCopyright © 2007–2015 Mysema Ltd. All rights reserved.