public interface DivideByOnConditionStep extends DivideByReturningStep
Modifier and Type | Method and Description |
---|---|
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 |
and(Condition condition)
Combine the currently assembled conditions with another one using the
Operator.AND operator. |
DivideByOnConditionStep |
and(Field<Boolean> condition)
Combine the currently assembled conditions with another one using the
Operator.AND operator. |
DivideByOnConditionStep |
and(SQL sql)
Combine the currently assembled conditions with another one using the
Operator.AND operator. |
DivideByOnConditionStep |
and(String sql)
Combine the currently assembled conditions with another one using the
Operator.AND operator. |
DivideByOnConditionStep |
and(String sql,
Object... bindings)
Combine the currently assembled conditions with another one using the
Operator.AND operator. |
DivideByOnConditionStep |
and(String sql,
QueryPart... parts)
Combine the currently assembled conditions with another one using the
Operator.AND operator. |
DivideByOnConditionStep |
andExists(Select<?> select)
Combine the currently assembled conditions with an
EXISTS
clause using the Operator.AND operator. |
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 |
andNot(Condition condition)
Combine the currently assembled conditions with a negated other one using
the
Operator.AND operator. |
DivideByOnConditionStep |
andNot(Field<Boolean> condition)
Combine the currently assembled conditions with a negated other one using
the
Operator.AND operator. |
DivideByOnConditionStep |
andNotExists(Select<?> select)
Combine the currently assembled conditions with a
NOT EXISTS
clause using the Operator.AND operator. |
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 |
or(Condition condition)
Combine the currently assembled conditions with another one using the
Operator.OR operator. |
DivideByOnConditionStep |
or(Field<Boolean> condition)
Combine the currently assembled conditions with another one using the
Operator.OR operator. |
DivideByOnConditionStep |
or(SQL sql)
Combine the currently assembled conditions with another one using the
Operator.OR operator. |
DivideByOnConditionStep |
or(String sql)
Combine the currently assembled conditions with another one using the
Operator.OR operator. |
DivideByOnConditionStep |
or(String sql,
Object... bindings)
Combine the currently assembled conditions with another one using the
Operator.OR operator. |
DivideByOnConditionStep |
or(String sql,
QueryPart... parts)
Combine the currently assembled conditions with another one using the
Operator.OR operator. |
DivideByOnConditionStep |
orExists(Select<?> select)
Combine the currently assembled conditions with an
EXISTS
clause using the Operator.OR operator. |
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 |
orNot(Condition condition)
Combine the currently assembled conditions with a negated other one using
the
Operator.OR operator. |
DivideByOnConditionStep |
orNot(Field<Boolean> condition)
Combine the currently assembled conditions with a negated other one using
the
Operator.OR operator. |
DivideByOnConditionStep |
orNotExists(Select<?> select)
Combine the currently assembled conditions with a
NOT EXISTS
clause using the Operator.OR operator. |
returning, returning
@Support DivideByOnConditionStep and(Condition condition)
Operator.AND
operator.@Support DivideByOnConditionStep and(Field<Boolean> condition)
Operator.AND
operator.@Deprecated @Support DivideByOnConditionStep and(Boolean condition)
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.Operator.AND
operator.@Support @PlainSQL DivideByOnConditionStep and(SQL sql)
Operator.AND
operator.
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
DSL.condition(SQL)
,
SQL
@Support @PlainSQL DivideByOnConditionStep and(String sql)
Operator.AND
operator.
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
DSL.condition(String)
,
SQL
@Support @PlainSQL DivideByOnConditionStep and(String sql, Object... bindings)
Operator.AND
operator.
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
DSL.condition(String, Object...)
,
SQL
@Support @PlainSQL DivideByOnConditionStep and(String sql, QueryPart... parts)
Operator.AND
operator.
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
DSL.condition(String, QueryPart...)
,
SQL
@Support DivideByOnConditionStep andNot(Condition condition)
Operator.AND
operator.@Support DivideByOnConditionStep andNot(Field<Boolean> condition)
Operator.AND
operator.@Deprecated @Support DivideByOnConditionStep andNot(Boolean condition)
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.Operator.AND
operator.@Support DivideByOnConditionStep andExists(Select<?> select)
EXISTS
clause using the Operator.AND
operator.@Support DivideByOnConditionStep andNotExists(Select<?> select)
NOT EXISTS
clause using the Operator.AND
operator.@Support DivideByOnConditionStep or(Condition condition)
Operator.OR
operator.@Support DivideByOnConditionStep or(Field<Boolean> condition)
Operator.OR
operator.@Deprecated @Support DivideByOnConditionStep or(Boolean condition)
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.Operator.OR
operator.@Support @PlainSQL DivideByOnConditionStep or(SQL sql)
Operator.OR
operator.
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
DSL.condition(SQL)
,
SQL
@Support @PlainSQL DivideByOnConditionStep or(String sql)
Operator.OR
operator.
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
DSL.condition(String)
,
SQL
@Support @PlainSQL DivideByOnConditionStep or(String sql, Object... bindings)
Operator.OR
operator.
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
DSL.condition(String, Object...)
,
SQL
@Support @PlainSQL DivideByOnConditionStep or(String sql, QueryPart... parts)
Operator.OR
operator.
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
DSL.condition(String, QueryPart...)
,
SQL
@Support DivideByOnConditionStep orNot(Condition condition)
Operator.OR
operator.@Support DivideByOnConditionStep orNot(Field<Boolean> condition)
Operator.OR
operator.@Deprecated @Support DivideByOnConditionStep orNot(Boolean condition)
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.Operator.OR
operator.@Support DivideByOnConditionStep orExists(Select<?> select)
EXISTS
clause using the Operator.OR
operator.@Support DivideByOnConditionStep orNotExists(Select<?> select)
NOT EXISTS
clause using the Operator.OR
operator.Copyright © 2016. All Rights Reserved.