| Package | Description | 
|---|---|
| org.jooq | The  org.jooqpackage contains jOOQ's public API. | 
| org.jooq.impl | The  org.jooq.implpackage contains jOOQ's implementation classes. | 
| Modifier and Type | Method and Description | 
|---|---|
| static Operator | Operator. valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static Operator[] | Operator. values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
| Modifier and Type | Method and Description | 
|---|---|
| void | UpdateQuery. addConditions(Operator operator,
             Collection<? extends Condition> conditions)Adds new conditions to the query, connecting them to existing
 conditions with the provided operator | 
| void | SelectQuery. addConditions(Operator operator,
             Collection<? extends Condition> conditions)Adds new conditions to the query, connecting them to existing
 conditions with the provided operator | 
| void | DeleteQuery. addConditions(Operator operator,
             Collection<? extends Condition> conditions)Adds new conditions to the query, connecting them to existing
 conditions with the provided operator | 
| void | ConditionProvider. addConditions(Operator operator,
             Collection<? extends Condition> conditions)Deprecated.  Adds new conditions to the query, connecting them to existing
 conditions with the provided operator | 
| void | UpdateQuery. addConditions(Operator operator,
             Condition... conditions)Adds new conditions to the query, connecting them to existing
 conditions with the provided operator | 
| void | SelectQuery. addConditions(Operator operator,
             Condition... conditions)Adds new conditions to the query, connecting them to existing
 conditions with the provided operator | 
| void | DeleteQuery. addConditions(Operator operator,
             Condition... conditions)Adds new conditions to the query, connecting them to existing
 conditions with the provided operator | 
| void | ConditionProvider. addConditions(Operator operator,
             Condition... conditions)Deprecated.  Adds new conditions to the query, connecting them to existing
 conditions with the provided operator | 
| void | SelectQuery. addHaving(Operator operator,
         Collection<? extends Condition> conditions)Adds new conditions to the having clause of query, connecting them with
 each other with  AND. | 
| void | SelectQuery. addHaving(Operator operator,
         Condition... conditions)Adds new conditions to the having clause of query, connecting them with
 each other with  AND. | 
| Modifier and Type | Method and Description | 
|---|---|
| static Condition | DSL. condition(Operator operator,
         Collection<? extends Condition> conditions)Return a  Conditionthat connects all argumentconditionswithOperator. | 
| static Condition | DSL. condition(Operator operator,
         Condition... conditions)Return a  Conditionthat connects all argumentconditionswithOperator. | 
Copyright © 2017. All Rights Reserved.