Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API. |
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 to
existing conditions with the provided operator
|
void |
SelectQuery.addHaving(Operator operator,
Condition... conditions)
Adds new conditions to the having clause of query, connecting them to
existing conditions with the provided operator
|
Copyright © 2014. All Rights Reserved.