Uses of Interface
org.jooq.Variable
-
Packages that use Variable Package Description org.jooq.impl Theorg.jooq.impl
package contains jOOQ's implementation classes. -
-
Uses of Variable in org.jooq.impl
Methods in org.jooq.impl that return Variable Modifier and Type Method Description static <T> Variable<T>
DSL. var(String name, DataType<T> type)
Create a local variable reference for use in procedural code.static <T> Variable<T>
DSL. var(Name name, DataType<T> type)
Create a local variable reference for use in procedural code.static <T> Variable<T>
DSL. variable(String name, DataType<T> type)
A synonym forDSL.var(Name, DataType)
to be used in Scala and Groovy, wherevar
is a reserved keyword.static <T> Variable<T>
DSL. variable(Name name, DataType<T> type)
A synonym forDSL.var(Name, DataType)
to be used in Scala and Groovy, wherevar
is a reserved keyword.Methods in org.jooq.impl with parameters of type Variable Modifier and Type Method Description static <T> Declaration<T>
DSL. declare(Variable<T> variable)
Create a local variable declaration for use in procedural code.static <T> ForInStep<T>
DSL. for_(Variable<T> index)
Create aFOR
loop for use in procedural code.
-