Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API. |
Modifier and Type | Method and Description |
---|---|
DivideByOnConditionStep |
DivideByOnConditionStep.and(Boolean condition)
Deprecated.
- 3.8.0 - [#4763] - Use
and(Condition) or
and(Field) instead. Due to ambiguity between calling
this method using Field.equals(Object) argument, vs.
calling the other method via a Field.equal(Object)
argument, this method will be removed in the future. |
DivideByOnConditionStep |
DivideByOnConditionStep.and(Condition condition)
Combine the currently assembled conditions with another one using the
Operator.AND operator. |
DivideByOnConditionStep |
DivideByOnConditionStep.and(Field<Boolean> condition)
Combine the currently assembled conditions with another one using the
Operator.AND operator. |
DivideByOnConditionStep |
DivideByOnConditionStep.and(SQL sql)
Combine the currently assembled conditions with another one using the
Operator.AND operator. |
DivideByOnConditionStep |
DivideByOnConditionStep.and(String sql)
Combine the currently assembled conditions with another one using the
Operator.AND operator. |
DivideByOnConditionStep |
DivideByOnConditionStep.and(String sql,
Object... bindings)
Combine the currently assembled conditions with another one using the
Operator.AND operator. |
DivideByOnConditionStep |
DivideByOnConditionStep.and(String sql,
QueryPart... parts)
Combine the currently assembled conditions with another one using the
Operator.AND operator. |
DivideByOnConditionStep |
DivideByOnConditionStep.andExists(Select<?> select)
Combine the currently assembled conditions with an
EXISTS
clause using the Operator.AND operator. |
DivideByOnConditionStep |
DivideByOnConditionStep.andNot(Boolean condition)
Deprecated.
- 3.8.0 - [#4763] - Use
andNot(Condition) or
andNot(Field) instead. Due to ambiguity between
calling this method using Field.equals(Object)
argument, vs. calling the other method via a
Field.equal(Object) argument, this method will be
removed in the future. |
DivideByOnConditionStep |
DivideByOnConditionStep.andNot(Condition condition)
Combine the currently assembled conditions with a negated other one using
the
Operator.AND operator. |
DivideByOnConditionStep |
DivideByOnConditionStep.andNot(Field<Boolean> condition)
Combine the currently assembled conditions with a negated other one using
the
Operator.AND operator. |
DivideByOnConditionStep |
DivideByOnConditionStep.andNotExists(Select<?> select)
Combine the currently assembled conditions with a
NOT EXISTS
clause using the Operator.AND operator. |
DivideByOnConditionStep |
DivideByOnStep.on(Boolean condition)
Deprecated.
- 3.8.0 - [#4763] - Use
DivideByOnStep.on(Condition...) or
DivideByOnStep.on(Field) instead. Due to ambiguity between calling
this method using Field.equals(Object) argument, vs.
calling the other method via a Field.equal(Object)
argument, this method will be removed in the future. |
DivideByOnConditionStep |
DivideByOnStep.on(Condition... conditions)
Add a division condition to the
DIVIDE BY clause, connecting
them with each other with Operator.AND . |
DivideByOnConditionStep |
DivideByOnStep.on(Field<Boolean> condition)
Add a division condition to the
DIVIDE BY clause |
DivideByOnConditionStep |
DivideByOnStep.on(SQL sql)
Add a division condition to the
DIVIDE BY clause
NOTE: When inserting plain SQL into jOOQ objects, you must
guarantee syntax integrity. |
DivideByOnConditionStep |
DivideByOnStep.on(String sql)
Add a division condition to the
DIVIDE BY clause
NOTE: When inserting plain SQL into jOOQ objects, you must
guarantee syntax integrity. |
DivideByOnConditionStep |
DivideByOnStep.on(String sql,
Object... bindings)
Add a division condition to the
DIVIDE BY clause
NOTE: When inserting plain SQL into jOOQ objects, you must
guarantee syntax integrity. |
DivideByOnConditionStep |
DivideByOnStep.on(String sql,
QueryPart... parts)
Add a division condition to the
DIVIDE BY clause
NOTE: When inserting plain SQL into jOOQ objects, you must
guarantee syntax integrity. |
DivideByOnConditionStep |
DivideByOnConditionStep.or(Boolean condition)
Deprecated.
- 3.8.0 - [#4763] - Use
or(Condition) or
or(Field) instead. Due to ambiguity between calling
this method using Field.equals(Object) argument, vs.
calling the other method via a Field.equal(Object)
argument, this method will be removed in the future. |
DivideByOnConditionStep |
DivideByOnConditionStep.or(Condition condition)
Combine the currently assembled conditions with another one using the
Operator.OR operator. |
DivideByOnConditionStep |
DivideByOnConditionStep.or(Field<Boolean> condition)
Combine the currently assembled conditions with another one using the
Operator.OR operator. |
DivideByOnConditionStep |
DivideByOnConditionStep.or(SQL sql)
Combine the currently assembled conditions with another one using the
Operator.OR operator. |
DivideByOnConditionStep |
DivideByOnConditionStep.or(String sql)
Combine the currently assembled conditions with another one using the
Operator.OR operator. |
DivideByOnConditionStep |
DivideByOnConditionStep.or(String sql,
Object... bindings)
Combine the currently assembled conditions with another one using the
Operator.OR operator. |
DivideByOnConditionStep |
DivideByOnConditionStep.or(String sql,
QueryPart... parts)
Combine the currently assembled conditions with another one using the
Operator.OR operator. |
DivideByOnConditionStep |
DivideByOnConditionStep.orExists(Select<?> select)
Combine the currently assembled conditions with an
EXISTS
clause using the Operator.OR operator. |
DivideByOnConditionStep |
DivideByOnConditionStep.orNot(Boolean condition)
Deprecated.
- 3.8.0 - [#4763] - Use
orNot(Condition) or
orNot(Field) instead. Due to ambiguity between
calling this method using Field.equals(Object)
argument, vs. calling the other method via a
Field.equal(Object) argument, this method will be
removed in the future. |
DivideByOnConditionStep |
DivideByOnConditionStep.orNot(Condition condition)
Combine the currently assembled conditions with a negated other one using
the
Operator.OR operator. |
DivideByOnConditionStep |
DivideByOnConditionStep.orNot(Field<Boolean> condition)
Combine the currently assembled conditions with a negated other one using
the
Operator.OR operator. |
DivideByOnConditionStep |
DivideByOnConditionStep.orNotExists(Select<?> select)
Combine the currently assembled conditions with a
NOT EXISTS
clause using the Operator.OR operator. |
Copyright © 2017. All Rights Reserved.