Module org.jooq
Package org.jooq

Interface ConditionProvider

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

    @Deprecated
    public interface ConditionProvider
    Deprecated.
    - 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 Detail

      • addConditions

        @Support
        void addConditions​(Condition condition)
        Deprecated.
        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.
        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.
        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.
        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.
        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.
        Adds new conditions to the query, connecting them to existing conditions with the provided operator.
        Parameters:
        conditions - The condition