Uses of Enum Class
org.jooq.conf.Transformation
Packages that use Transformation
-
Uses of Transformation in org.jooq.conf
Fields in org.jooq.conf declared as TransformationModifier and TypeFieldDescriptionprotected Transformation
Settings.parseAppendMissingTableReferences
protected Transformation
protected Transformation
Settings.transformQualify
protected Transformation
Settings.transformRownum
Methods in org.jooq.conf that return TransformationModifier and TypeMethodDescriptionstatic Transformation
Settings.getParseAppendMissingTableReferences()
Transform the parsed SQL to append missing table references to the query'sFROM
orUSING
clause, if applicable.Transform a subquery from an IN condition with LIMIT to an equivalent derived table.Settings.getTransformQualify()
Transform theQUALIFY
clause to an equivalent derived table to filter on window functions.Settings.getTransformRownum()
TransformROWNUM
expressions to correspondingLIMIT
clauses orROW_NUMBER()
expressions.static Transformation
Returns the enum constant of this class with the specified name.static Transformation[]
Transformation.values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.jooq.conf with parameters of type TransformationModifier and TypeMethodDescriptionvoid
Settings.setParseAppendMissingTableReferences
(Transformation value) Transform the parsed SQL to append missing table references to the query'sFROM
orUSING
clause, if applicable.void
Settings.setTransformInConditionSubqueryWithLimitToDerivedTable
(Transformation value) Transform a subquery from an IN condition with LIMIT to an equivalent derived table.void
Settings.setTransformQualify
(Transformation value) Transform theQUALIFY
clause to an equivalent derived table to filter on window functions.void
Settings.setTransformRownum
(Transformation value) TransformROWNUM
expressions to correspondingLIMIT
clauses orROW_NUMBER()
expressions.Settings.withParseAppendMissingTableReferences
(Transformation value) Transform the parsed SQL to append missing table references to the query'sFROM
orUSING
clause, if applicable.Transform a subquery from an IN condition with LIMIT to an equivalent derived table.Settings.withTransformQualify
(Transformation value) Transform theQUALIFY
clause to an equivalent derived table to filter on window functions.Settings.withTransformRownum
(Transformation value) TransformROWNUM
expressions to correspondingLIMIT
clauses orROW_NUMBER()
expressions.