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 TransformationSettings.parseAppendMissingTableReferencesprotected Transformationprotected TransformationSettings.transformQualifyprotected TransformationSettings.transformRownumMethods in org.jooq.conf that return TransformationModifier and TypeMethodDescriptionstatic TransformationSettings.getParseAppendMissingTableReferences()Transform the parsed SQL to append missing table references to the query'sFROMorUSINGclause, if applicable.Transform a subquery from an IN condition with LIMIT to an equivalent derived table.Settings.getTransformQualify()Transform theQUALIFYclause to an equivalent derived table to filter on window functions.Settings.getTransformRownum()TransformROWNUMexpressions to correspondingLIMITclauses orROW_NUMBER()expressions.static TransformationReturns 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 TypeMethodDescriptionvoidSettings.setParseAppendMissingTableReferences(Transformation value) Transform the parsed SQL to append missing table references to the query'sFROMorUSINGclause, if applicable.voidSettings.setTransformInConditionSubqueryWithLimitToDerivedTable(Transformation value) Transform a subquery from an IN condition with LIMIT to an equivalent derived table.voidSettings.setTransformQualify(Transformation value) Transform theQUALIFYclause to an equivalent derived table to filter on window functions.voidSettings.setTransformRownum(Transformation value) TransformROWNUMexpressions to correspondingLIMITclauses orROW_NUMBER()expressions.Settings.withParseAppendMissingTableReferences(Transformation value) Transform the parsed SQL to append missing table references to the query'sFROMorUSINGclause, if applicable.Transform a subquery from an IN condition with LIMIT to an equivalent derived table.Settings.withTransformQualify(Transformation value) Transform theQUALIFYclause to an equivalent derived table to filter on window functions.Settings.withTransformRownum(Transformation value) TransformROWNUMexpressions to correspondingLIMITclauses orROW_NUMBER()expressions.