- All Implemented Interfaces:
Serializable,Condition,QueryPart,QueryPartInternal
Condition implementations in client code.
Client code may provide proper Condition implementations extending
this useful base class. All necessary parts of the Condition
interface are already implemented. Only this method needs further
implementation: accept(Context).
Refer to that methods' Javadoc for further details about their expected behaviour.
- Author:
- Lukas Eder
- See Also:
- Serialized Form
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract voidSubclasses must implement this method.Combine this condition with another one using theOperator.ANDoperator.Combine this condition with another one using theOperator.ANDoperator.Combine this condition with another one using theOperator.ANDoperator.Combine this condition with another one using theOperator.ANDoperator.Combine this condition with another one using theOperator.ANDoperator.Combine this condition with another one using theOperator.ANDoperator.Combine this condition with an EXISTS clause using theOperator.ANDoperator.Combine this condition with a negated other one using theOperator.ANDoperator.Combine this condition with a negated other one using theOperator.ANDoperator.andNotExists(Select<?> select)Combine this condition with a NOT EXIST clause using theOperator.ANDoperator.Clause[]TheClauses that are represented by this query part.protected DSLContextcreate()Deprecated.protected DSLContextcreate(Configuration configuration)Deprecated.- 3.11.0 - [#6722] - UseAttachable.configuration()andConfiguration.dsl()instead.protected DSLContextDeprecated.- 3.11.0 - [#6722] - UseAttachable.configuration()andConfiguration.dsl()instead.booleanSubclasses may override thisbooleanSubclasses may override thisbooleanSubclasses may override thisbooleanSubclasses may override thisbooleanSubclasses may override thisbooleanCheck whether thisQueryPartcan be considered equal to anotherQueryPart.booleanSubclasses may override thisinthashCode()Generate a hash code from thisQueryPart.not()Invert this conditionstatic CustomConditionCreate aCustomConditionfrom a lambda expression.Combine this condition with another one using theOperator.ORoperator.Combine this condition with another one using theOperator.ORoperator.Combine this condition with another one using theOperator.ORoperator.Combine this condition with another one using theOperator.ORoperator.Combine this condition with another one using theOperator.ORoperator.Combine this condition with another one using theOperator.ORoperator.Combine this condition with an EXISTS clause using theOperator.ORoperator.Combine this condition with a negated other one using theOperator.ORoperator.Combine this condition with a negated other one using theOperator.ORoperator.orNotExists(Select<?> select)Combine this condition with a NOT EXIST clause using theOperator.ORoperator.booleanrendersContent(Context<?> ctx)Subclasses may override thistoString()Render a SQL string representation of thisQueryPart.protected DataAccessExceptiontranslate(String sql, SQLException e)Internal convenience method
-
Constructor Details
-
CustomCondition
protected CustomCondition()
-
-
Method Details
-
of
Create aCustomConditionfrom a lambda expression. -
accept
-
clauses
Description copied from interface:QueryPartInternalTheClauses that are represented by this query part.QueryParts can specify severalClauses for which an event will be emittedbefore(in forward order) andafter(in reverse order) visiting the the query part throughContext.visit(QueryPart)This method is for JOOQ INTERNAL USE only. Do not reference directly
- Specified by:
clausesin interfaceQueryPartInternal- Returns:
- The
Clauses represented by this query part ornullor an empty array if this query part does not represent a clause.
-
declaresFields
public final boolean declaresFields()Subclasses may override this- Specified by:
declaresFieldsin interfaceQueryPartInternal
-
declaresTables
public final boolean declaresTables()Subclasses may override this- Specified by:
declaresTablesin interfaceQueryPartInternal
-
and
Description copied from interface:ConditionCombine this condition with another one using theOperator.ANDoperator. -
and
Description copied from interface:ConditionCombine this condition with another one using theOperator.ANDoperator. -
or
Description copied from interface:ConditionCombine this condition with another one using theOperator.ORoperator. -
or
Description copied from interface:ConditionCombine this condition with another one using theOperator.ORoperator. -
and
Description copied from interface:ConditionCombine this condition with another one using theOperator.ANDoperator.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!
- Specified by:
andin interfaceCondition- Parameters:
sql- The other condition- Returns:
- The combined condition
- See Also:
DSL.condition(SQL),SQL
-
and
Description copied from interface:ConditionCombine this condition with another one using theOperator.ANDoperator.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!
- Specified by:
andin interfaceCondition- Parameters:
sql- The other condition- Returns:
- The combined condition
- See Also:
DSL.condition(String),SQL
-
and
Description copied from interface:ConditionCombine this condition with another one using theOperator.ANDoperator.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!
- Specified by:
andin interfaceCondition- Parameters:
sql- The other conditionbindings- The bindings- Returns:
- The combined condition
- See Also:
DSL.condition(String, Object...),DSL.sql(String, Object...),SQL
-
and
Description copied from interface:ConditionCombine this condition with another one using theOperator.ANDoperator.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!
- Specified by:
andin interfaceCondition- Parameters:
sql- The SQL clause, containing {numbered placeholders} where query parts can be injectedparts- TheQueryPartobjects that are rendered at the {numbered placeholder} locations- Returns:
- The combined condition
- See Also:
DSL.condition(String, QueryPart...),DSL.sql(String, QueryPart...),SQL
-
or
Description copied from interface:ConditionCombine this condition with another one using theOperator.ORoperator.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!
- Specified by:
orin interfaceCondition- Parameters:
sql- The other condition- Returns:
- The combined condition
- See Also:
DSL.condition(SQL),SQL
-
or
Description copied from interface:ConditionCombine this condition with another one using theOperator.ORoperator.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!
- Specified by:
orin interfaceCondition- Parameters:
sql- The other condition- Returns:
- The combined condition
- See Also:
DSL.condition(String),SQL
-
or
Description copied from interface:ConditionCombine this condition with another one using theOperator.ORoperator.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!
- Specified by:
orin interfaceCondition- Parameters:
sql- The other conditionbindings- The bindings- Returns:
- The combined condition
- See Also:
DSL.condition(String, Object...),DSL.sql(String, Object...),SQL
-
or
Description copied from interface:ConditionCombine this condition with another one using theOperator.ORoperator.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!
- Specified by:
orin interfaceCondition- Parameters:
sql- The SQL clause, containing {numbered placeholders} where query parts can be injectedparts- TheQueryPartobjects that are rendered at the {numbered placeholder} locations- Returns:
- The combined condition
- See Also:
DSL.condition(String, Object...),DSL.sql(String, QueryPart...),SQL
-
andNot
Description copied from interface:ConditionCombine this condition with a negated other one using theOperator.ANDoperator. -
andNot
Description copied from interface:ConditionCombine this condition with a negated other one using theOperator.ANDoperator. -
orNot
Description copied from interface:ConditionCombine this condition with a negated other one using theOperator.ORoperator. -
orNot
Description copied from interface:ConditionCombine this condition with a negated other one using theOperator.ORoperator. -
andExists
Description copied from interface:ConditionCombine this condition with an EXISTS clause using theOperator.ANDoperator. -
andNotExists
Description copied from interface:ConditionCombine this condition with a NOT EXIST clause using theOperator.ANDoperator.- Specified by:
andNotExistsin interfaceCondition- Parameters:
select- The EXISTS's subquery- Returns:
- The combined condition
-
orExists
Description copied from interface:ConditionCombine this condition with an EXISTS clause using theOperator.ORoperator. -
orNotExists
Description copied from interface:ConditionCombine this condition with a NOT EXIST clause using theOperator.ORoperator.- Specified by:
orNotExistsin interfaceCondition- Parameters:
select- The EXISTS's subquery- Returns:
- The combined condition
-
not
Description copied from interface:ConditionInvert this conditionThis is the same as calling
DSL.not(Condition) -
rendersContent
Subclasses may override this- Specified by:
rendersContentin interfaceQueryPartInternal
-
declaresWindows
public boolean declaresWindows()Subclasses may override this- Specified by:
declaresWindowsin interfaceQueryPartInternal
-
declaresCTE
public boolean declaresCTE()Subclasses may override this- Specified by:
declaresCTEin interfaceQueryPartInternal
-
declaresParameters
Subclasses may override this- Specified by:
declaresParametersin interfaceQueryPartInternal
-
generatesCast
public boolean generatesCast()Subclasses may override this- Specified by:
generatesCastin interfaceQueryPartInternal
-
equals
Description copied from interface:QueryPartCheck whether thisQueryPartcan be considered equal to anotherQueryPart.In general,
QueryPartequality is defined in terms ofQueryPart.toString()equality. In other words, two query parts are considered equal if their rendered SQL (with inlined bind variables) is equal. This means that the two query parts do not necessarily have to be of the same type.Some
QueryPartimplementations may choose to override this behaviour for improved performance, asQueryPart.toString()is an expensive operation, if called many times. -
hashCode
public int hashCode()Description copied from interface:QueryPartGenerate a hash code from thisQueryPart.In general,
QueryParthash codes are the same as the hash codes generated fromQueryPart.toString(). This guarantees consistent behaviour withQueryPart.equals(Object)Some
QueryPartimplementations may choose to override this behaviour for improved performance, asQueryPart.toString()is an expensive operation, if called many times. -
toString
Description copied from interface:QueryPartRender a SQL string representation of thisQueryPart.For improved debugging, this renders a SQL string of this
QueryPartwith inlined bind variables. If thisQueryPartisAttachable, then the attachedConfigurationmay be used for rendering the SQL string, includingSQLDialectandSettings. Do note that mostQueryPartinstances are not attached to aConfiguration, and thus there is no guarantee that the SQL string will make sense in the context of a specific database. -
create
Deprecated.- 3.11.0 - [#6722] - UseAttachable.configuration()andConfiguration.dsl()instead.Internal convenience method -
create
Deprecated.- 3.11.0 - [#6722] - UseAttachable.configuration()andConfiguration.dsl()instead.Internal convenience method -
create
Deprecated.- 3.11.0 - [#6722] - UseAttachable.configuration()andConfiguration.dsl()instead.Internal convenience method -
translate
Internal convenience method
-
Attachable.configuration()andConfiguration.dsl()instead.