- All Known Subinterfaces:
- DeleteQuery<R>,- InsertQuery<R>,- SelectQuery<R>,- UpdateQuery<R>
Deprecated, for removal: This API element is subject to removal in a future version.
- 2.6.0 [#1881] - This type will be removed from the public API,
             soon. Its methods will be pushed down into extending interfaces.
             Do not reference this type directly.
A common interface for all objects holding conditions (e.g. queries).
- Author:
- Lukas Eder
- 
Method SummaryModifier and TypeMethodDescriptionvoidaddConditions(Collection<? extends Condition> conditions) Deprecated, for removal: This API element is subject to removal in a future version.Adds new conditions to the query, connecting them to existing conditions withOperator.AND.voidaddConditions(Condition condition) Deprecated, for removal: This API element is subject to removal in a future version.Adds a new condition to the query, connecting them to existing conditions withOperator.AND.voidaddConditions(Condition... conditions) Deprecated, for removal: This API element is subject to removal in a future version.Adds new conditions to the query, connecting them to existing conditions withOperator.AND.voidaddConditions(Operator operator, Collection<? extends Condition> conditions) Deprecated, for removal: This API element is subject to removal in a future version.Adds new conditions to the query, connecting them to existing conditions with the provided operator.voidaddConditions(Operator operator, Condition condition) Deprecated, for removal: This API element is subject to removal in a future version.Adds a new condition to the query, connecting them to existing conditions with the provided operator.voidaddConditions(Operator operator, Condition... conditions) Deprecated, for removal: This API element is subject to removal in a future version.Adds new conditions to the query, connecting them to existing conditions with the provided operator.
- 
Method Details- 
addConditionsDeprecated, for removal: This API element is subject to removal in a future version.Adds a new condition to the query, connecting them to existing conditions withOperator.AND.- Parameters:
- condition- The condition
 
- 
addConditionsDeprecated, for removal: This API element is subject to removal in a future version.Adds new conditions to the query, connecting them to existing conditions withOperator.AND.- Parameters:
- conditions- The condition
 
- 
addConditionsDeprecated, for removal: This API element is subject to removal in a future version.Adds new conditions to the query, connecting them to existing conditions withOperator.AND.- Parameters:
- conditions- The condition
 
- 
addConditionsDeprecated, for removal: This API element is subject to removal in a future version.Adds a new condition to the query, connecting them to existing conditions with the provided operator.- Parameters:
- condition- The condition
 
- 
addConditionsDeprecated, for removal: This API element is subject to removal in a future version.Adds new conditions to the query, connecting them to existing conditions with the provided operator.- Parameters:
- conditions- The condition
 
- 
addConditionsDeprecated, for removal: This API element is subject to removal in a future version.Adds new conditions to the query, connecting them to existing conditions with the provided operator.- Parameters:
- conditions- The condition
 
 
-