- All Implemented Interfaces:
- Serializable,- QueryPart,- QueryPartInternal
QueryPart 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.
 Such custom QueryPart implementations can be useful in any of
 these scenarios:
 
- When reusing a custom QueryPartin other customQueryParts, e.g. inCustomCondition,CustomField,CustomTable, etc.
- When inlining a custom QueryPartin plain SQL methods, such asDSL.condition(String, QueryPart...),DSL.field(String, QueryPart...),DSL.table(String, QueryPart...)
- Author:
- Lukas Eder
- See Also:
- Serialized Form
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionabstract voidSubclasses must implement this method.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.static CustomQueryPartCreate aCustomQueryPartfrom a lambda expression.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- 
CustomQueryPartprotected CustomQueryPart()
 
- 
- 
Method Details- 
ofCreate aCustomQueryPartfrom a lambda expression.
- 
accept
- 
clausesDescription 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 interface- QueryPartInternal
- Returns:
- The Clauses represented by this query part ornullor an empty array if this query part does not represent a clause.
 
- 
declaresFieldspublic final boolean declaresFields()Subclasses may override this- Specified by:
- declaresFieldsin interface- QueryPartInternal
 
- 
declaresTablespublic final boolean declaresTables()Subclasses may override this- Specified by:
- declaresTablesin interface- QueryPartInternal
 
- 
rendersContentSubclasses may override this- Specified by:
- rendersContentin interface- QueryPartInternal
 
- 
declaresWindowspublic boolean declaresWindows()Subclasses may override this- Specified by:
- declaresWindowsin interface- QueryPartInternal
 
- 
declaresCTEpublic boolean declaresCTE()Subclasses may override this- Specified by:
- declaresCTEin interface- QueryPartInternal
 
- 
declaresParametersSubclasses may override this- Specified by:
- declaresParametersin interface- QueryPartInternal
 
- 
generatesCastpublic boolean generatesCast()Subclasses may override this- Specified by:
- generatesCastin interface- QueryPartInternal
 
- 
equalsDescription 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.
- 
hashCodepublic 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.
- 
toStringDescription 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.
- 
createDeprecated.- 3.11.0 - [#6722] - UseAttachable.configuration()andConfiguration.dsl()instead.Internal convenience method
- 
createDeprecated.- 3.11.0 - [#6722] - UseAttachable.configuration()andConfiguration.dsl()instead.Internal convenience method
- 
createDeprecated.- 3.11.0 - [#6722] - UseAttachable.configuration()andConfiguration.dsl()instead.Internal convenience method
- 
translateInternal convenience method
 
- 
Attachable.configuration()andConfiguration.dsl()instead.