Module org.jooq
Package org.jooq

Interface ConditionProvider

All Known Subinterfaces:
DeleteQuery<R>, InsertQuery<R>, SelectQuery<R>, UpdateQuery<R>

@Deprecated(forRemoval=true, since="2.6") public interface ConditionProvider
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 Summary

    Modifier and Type
    Method
    Description
    void
    addConditions(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 Operator.AND.
    void
    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 Operator.AND.
    void
    addConditions(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 Operator.AND.
    void
    addConditions(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.
    void
    addConditions(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.
    void
    addConditions(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

    • addConditions

      @Support void addConditions(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 Operator.AND.
      Parameters:
      condition - The condition
    • addConditions

      @Support void addConditions(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 Operator.AND.
      Parameters:
      conditions - The condition
    • addConditions

      @Support void addConditions(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 Operator.AND.
      Parameters:
      conditions - The condition
    • addConditions

      @Support void addConditions(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.
      Parameters:
      condition - The condition
    • addConditions

      @Support void addConditions(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.
      Parameters:
      conditions - The condition
    • addConditions

      @Support void addConditions(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.
      Parameters:
      conditions - The condition