| Package | Description | 
|---|---|
| org.jooq | 
 The  
org.jooq package contains jOOQ's public API. | 
| org.jooq.impl | 
 The  
org.jooq.impl package contains jOOQ's implementation classes. | 
| Modifier and Type | Method and Description | 
|---|---|
RenderContext | 
RenderContext.castMode(RenderContext.CastMode mode)
Set the new cast mode for  
castMode(). | 
RenderContext | 
RenderContext.castModeSome(SQLDialect... dialects)
Set the new cast mode to  
RenderContext.CastMode.SOME for a list of dialects. | 
RenderContext | 
RenderContext.format(boolean format)
Override the value of  
Settings.isRenderFormatted(). | 
RenderContext | 
RenderContext.formatIndentEnd()
Stop indenting subsequent SQL by one level (two characters), if
  
Settings.isRenderFormatted() is set to true. | 
RenderContext | 
RenderContext.formatIndentEnd(int indent)
Stop indenting subsequent SQL by a number of characters, if
  
Settings.isRenderFormatted() is set to true. | 
RenderContext | 
RenderContext.formatIndentLockEnd()
Stop indenting subsequent SQL at the same level as the current line, if
  
Settings.isRenderFormatted() is set to true. | 
RenderContext | 
RenderContext.formatIndentLockStart()
Start indenting subsequent SQL at the same level as the current line, if
  
Settings.isRenderFormatted() is set to true. | 
RenderContext | 
RenderContext.formatIndentStart()
Start indenting subsequent SQL by one level (two characters), if
  
Settings.isRenderFormatted() is set to true. | 
RenderContext | 
RenderContext.formatIndentStart(int indent)
Start indenting subsequent SQL by a number of characters, if
  
Settings.isRenderFormatted() is set to true. | 
RenderContext | 
RenderContext.formatNewLine()
Render a new line character (only if  
Settings.isRenderFormatted()
 is set to true). | 
RenderContext | 
RenderContext.formatNewLineAfterPrintMargin()
Render a new line character (only if  
Settings.isRenderFormatted()
 is set to true, and the formatPrintMargin(int) has
 been exceeded). | 
RenderContext | 
RenderContext.formatPrintMargin(int margin)
Set a print margin that will be applied to formatted SQL, if
  
Settings.isRenderFormatted() is set to true. | 
RenderContext | 
RenderContext.formatSeparator()
Render a new line character (only if  
Settings.isRenderFormatted()
 is set to true), or a whitespace separator character
 otherwise. | 
RenderContext | 
RenderContext.inline(boolean inline)
Deprecated. 
 
- 3.1.0 - [#2414] - This method should no longer be used. Use
              
paramType(ParamType) instead. | 
RenderContext | 
RenderContext.keyword(String keyword)
Append a SQL keyword to the context's contained  
StringBuilder. | 
RenderContext | 
RenderContext.literal(String literal)
Append some (quoted) literal to the context's contained
  
StringBuilder. | 
RenderContext | 
RenderContext.namedParams(boolean renderNamedParams)
Deprecated. 
 
- 3.1.0 - [#2414] - This method should no longer be used. Use
              
paramType(ParamType) instead. | 
RenderContext | 
RenderContext.paramType(ParamType paramType)
Set the new context value for  
paramType(). | 
RenderContext | 
RenderContext.qualify(boolean qualify)
Sett the new context value for  
qualify(). | 
RenderContext | 
VisitContext.renderContext()
 | 
RenderContext | 
DSLContext.renderContext()
Get a new  
RenderContext for the context of this DSLContext. | 
RenderContext | 
RenderContext.sql(char sql)
Append some SQL to the context's contained  
StringBuilder. | 
RenderContext | 
RenderContext.sql(int sql)
Append some SQL to the context's contained  
StringBuilder. | 
RenderContext | 
RenderContext.sql(QueryPart part)
Deprecated. 
 
- 3.2.0 - [#2666] - Use  
Context.visit(QueryPart) instead | 
RenderContext | 
RenderContext.sql(String sql)
Append some SQL to the context's contained  
StringBuilder. | 
RenderContext | 
RenderContext.sql(String sql,
   boolean literal)
Append some SQL to the context's contained  
StringBuilder. | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
QueryPartInternal.toSQL(RenderContext ctx)
Deprecated. 
 
- 3.4.0 - [#2694] - Use  
QueryPartInternal.accept(Context) instead. | 
| Modifier and Type | Method and Description | 
|---|---|
RenderContext | 
DefaultDSLContext.renderContext()  | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
CustomQueryPart.toSQL(RenderContext context)
Deprecated. 
 
- 3.4.0 - [#2694] - Use  
CustomQueryPart.accept(Context) instead. | 
void | 
CustomField.toSQL(RenderContext context)
Deprecated. 
 
- 3.4.0 - [#2694] - Use  
CustomField.accept(Context) instead. | 
void | 
CustomCondition.toSQL(RenderContext context)
Deprecated. 
 
- 3.4.0 - [#2694] - Use  
CustomCondition.accept(Context) instead. | 
Copyright © 2015. All Rights Reserved.