Uses of Interface
org.jooq.RenderContext
-
Packages that use RenderContext Package Description org.jooq Theorg.jooq
package contains jOOQ's public API.org.jooq.impl Theorg.jooq.impl
package contains jOOQ's implementation classes. -
-
Uses of RenderContext in org.jooq
Methods in org.jooq that return RenderContext Modifier and Type Method Description RenderContext
RenderContext. castMode(RenderContext.CastMode mode)
Set the new cast mode forcastMode()
.RenderContext
RenderContext. castModeSome(SQLDialect... dialects)
Deprecated.- [#3703] - 3.5.0 - Do not use this any longerRenderContext
RenderContext. format(boolean format)
Override the value ofSettings.isRenderFormatted()
.RenderContext
RenderContext. formatIndentEnd()
Stop indenting subsequent SQL by one level (two characters), ifSettings.isRenderFormatted()
is set totrue
.RenderContext
RenderContext. formatIndentEnd(int indent)
Stop indenting subsequent SQL by a number of characters, ifSettings.isRenderFormatted()
is set totrue
.RenderContext
RenderContext. formatIndentLockEnd()
Stop indenting subsequent SQL at the same level as the current line, ifSettings.isRenderFormatted()
is set totrue
.RenderContext
RenderContext. formatIndentLockStart()
Start indenting subsequent SQL at the same level as the current line, ifSettings.isRenderFormatted()
is set totrue
.RenderContext
RenderContext. formatIndentStart()
Start indenting subsequent SQL by one level (two characters), ifSettings.isRenderFormatted()
is set totrue
.RenderContext
RenderContext. formatIndentStart(int indent)
Start indenting subsequent SQL by a number of characters, ifSettings.isRenderFormatted()
is set totrue
.RenderContext
RenderContext. formatNewLine()
Render a new line character (only ifSettings.isRenderFormatted()
is set totrue
).RenderContext
RenderContext. formatNewLineAfterPrintMargin()
Render a new line character (only ifSettings.isRenderFormatted()
is set totrue
, and theformatPrintMargin(int)
has been exceeded).RenderContext
RenderContext. formatPrintMargin(int margin)
Set a print margin that will be applied to formatted SQL, ifSettings.isRenderFormatted()
is set totrue
.RenderContext
RenderContext. formatSeparator()
Render a new line character (only ifSettings.isRenderFormatted()
is set totrue
), or a whitespace separator character otherwise.RenderContext
RenderContext. inline(boolean inline)
Deprecated.- 3.1.0 - [#2414] - This method should no longer be used.RenderContext
RenderContext. keyword(String keyword)
Append a SQL keyword to the context's containedStringBuilder
.RenderContext
RenderContext. literal(String literal)
Append some (quoted) literal to the context's containedStringBuilder
.RenderContext
RenderContext. namedParams(boolean renderNamedParams)
Deprecated.- 3.1.0 - [#2414] - This method should no longer be used.RenderContext
RenderContext. paramType(ParamType paramType)
Set the new context value forparamType()
.RenderContext
RenderContext. qualify(boolean qualify)
Sett the new context value forqualify()
.RenderContext
BindingSQLContext. render()
TheRenderContext
that contains the generated SQL and the current SQL generation state.RenderContext
DSLContext. renderContext()
Deprecated.- [#6280] - 3.10 - Do not reuse this method.RenderContext
VisitContext. renderContext()
RenderContext
RenderContext. sql(char sql)
Append some SQL to the context's containedStringBuilder
.RenderContext
RenderContext. sql(double sql)
Append some SQL to the context's containedStringBuilder
.RenderContext
RenderContext. sql(float sql)
Append some SQL to the context's containedStringBuilder
.RenderContext
RenderContext. sql(int sql)
Append some SQL to the context's containedStringBuilder
.RenderContext
RenderContext. sql(long sql)
Append some SQL to the context's containedStringBuilder
.RenderContext
RenderContext. sql(String sql)
Append some SQL to the context's containedStringBuilder
.RenderContext
RenderContext. sql(String sql, boolean literal)
Append some SQL to the context's containedStringBuilder
.RenderContext
RenderContext. sql(QueryPart part)
Deprecated.- 3.2.0 - [#2666] - UseContext.visit(QueryPart)
insteadMethods in org.jooq with parameters of type RenderContext Modifier and Type Method Description void
QueryPartInternal. toSQL(RenderContext ctx)
Deprecated.- 3.4.0 - [#2694] - UseQueryPartInternal.accept(Context)
instead. -
Uses of RenderContext in org.jooq.impl
Methods in org.jooq.impl that return RenderContext Modifier and Type Method Description RenderContext
DefaultDSLContext. renderContext()
-