Package org.infinispan.query.dsl
Interface QueryBuilder
-
- All Superinterfaces:
FilterConditionBeginContext
,PaginationContext<QueryBuilder>
- All Known Subinterfaces:
FilterConditionContextQueryBuilder
,RangeConditionContextQueryBuilder
@Deprecated public interface QueryBuilder extends FilterConditionBeginContext, PaginationContext<QueryBuilder>
Deprecated.since 10.1. The Ickle query language is now preferred over theQueryBuilder
. SeeQueryFactory.create(java.lang.String)
. TheQueryBuilder
and associated context interfaces will be removed in version 11.A builder forQuery
objects. An instance of this class can be obtained fromQueryFactory
.- Since:
- 6.0
- Author:
- anistor@redhat.com
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Query
build()
Deprecated.Builds the query object.QueryBuilder
groupBy(String... attributePath)
Deprecated.QueryBuilder
orderBy(String attributePath)
Deprecated.QueryBuilder
orderBy(String attributePath, SortOrder sortOrder)
Deprecated.QueryBuilder
orderBy(Expression expression)
Deprecated.QueryBuilder
orderBy(Expression expression, SortOrder sortOrder)
Deprecated.QueryBuilder
select(String... attributePath)
Deprecated.QueryBuilder
select(Expression... projection)
Deprecated.-
Methods inherited from interface org.infinispan.query.dsl.FilterConditionBeginContext
having, having, not, not
-
Methods inherited from interface org.infinispan.query.dsl.PaginationContext
maxResults, startOffset
-
-
-
-
Method Detail
-
orderBy
QueryBuilder orderBy(Expression expression)
Deprecated.
-
orderBy
QueryBuilder orderBy(Expression expression, SortOrder sortOrder)
Deprecated.
-
orderBy
QueryBuilder orderBy(String attributePath)
Deprecated.
-
orderBy
QueryBuilder orderBy(String attributePath, SortOrder sortOrder)
Deprecated.
-
select
QueryBuilder select(Expression... projection)
Deprecated.
-
select
QueryBuilder select(String... attributePath)
Deprecated.
-
groupBy
QueryBuilder groupBy(String... attributePath)
Deprecated.
-
build
Query build()
Deprecated.Builds the query object. Once built, the query is immutable (except for the named parameters).- Returns:
- the Query
-
-