Uses of Class
org.jooq.conf.ParamType
-
Packages that use ParamType Package Description org.jooq Theorg.jooq
package contains jOOQ's public API.org.jooq.conf -
-
Uses of ParamType in org.jooq
Methods in org.jooq that return ParamType Modifier and Type Method Description ParamType
Param. getParamType()
The parameter type.ParamType
Context. paramType()
Specify, how bind values should be rendered.ParamType
RenderContext. paramType()
Specify, how bind values should be rendered.Methods in org.jooq with parameters of type ParamType Modifier and Type Method Description java.lang.String
Query. getSQL(ParamType paramType)
Retrieve the SQL code rendered by this Query.C
Context. paramType(ParamType paramType)
Set the new context value forContext.paramType()
.RenderContext
RenderContext. paramType(ParamType paramType)
Set the new context value forRenderContext.paramType()
. -
Uses of ParamType in org.jooq.conf
Fields in org.jooq.conf declared as ParamType Modifier and Type Field Description protected ParamType
Settings. paramType
Methods in org.jooq.conf that return ParamType Modifier and Type Method Description static ParamType
ParamType. fromValue(java.lang.String v)
ParamType
Settings. getParamType()
Specify how bind variables are to be rendered.static ParamType
SettingsTools. getParamType(Settings settings)
Get the parameter type from the settings.static ParamType
ParamType. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ParamType[]
ParamType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.jooq.conf with parameters of type ParamType Modifier and Type Method Description void
Settings. setParamType(ParamType value)
Sets the value of the paramType property.Settings
Settings. withParamType(ParamType value)
-