QueryDslSupport

Factory for attached query expressions, executable directly (using for example DslQuery#fetch() , DslQuery#fetchOne() , DslQuery#fetchFirst() etc).

API

QueryDslSupport.java
interface QueryDslSupport {
  DeleteClause<?> delete(EntityPath<?> path)
  DslQuery<T> select(Expression<T> expr)     (1)
  DslQuery<Tuple> select(Expression<?>... exprs)     (2)
  DslQuery<T> selectDistinct(Expression<T> expr)     (3)
  DslQuery<Tuple> selectDistinct(Expression<?>... exprs)     (4)
  DslQuery<Integer> selectZero()     (5)
  DslQuery<Integer> selectOne()     (6)
  DslQuery<T> selectFrom(EntityPath<T> expr)     (7)
  DslQuery<T> from(EntityPath<T> from)
  DslQuery<T> from(EntityPath<T>... from)
}
1 select(Expression)

Create a new DslQuery instance with the given projection

2 select(Expression)

Create a new DslQuery instance with the given projection

3 selectDistinct(Expression)

Create a new DslQuery instance with the given projection

4 selectDistinct(Expression)

Create a new DslQuery instance with the given projection

5 selectZero()

Create a new DslQuery instance with the projection 0

6 selectOne()

Create a new DslQuery instance with the projection 1

7 selectFrom(EntityPath)

Create a new DslQuery instance with the given projection

Members

select(Expression)

Create a new DslQuery instance with the given projection

select(Expression)

Create a new DslQuery instance with the given projection

selectDistinct(Expression)

Create a new DslQuery instance with the given projection

selectDistinct(Expression)

Create a new DslQuery instance with the given projection

selectZero()

Create a new DslQuery instance with the projection 0

selectOne()

Create a new DslQuery instance with the projection 1

selectFrom(EntityPath)

Create a new DslQuery instance with the given projection