- All Superinterfaces:
BindingScope
,ExecuteScope
,Scope
A container type for
Binding.get(BindingGetStatementContext)
arguments.- Author:
- Lukas Eder
-
Method Summary
Modifier and TypeMethodDescription<T> @NotNull BindingGetStatementContext<T>
Create a new context from this one using a converter.int
index()
The column index at which the value is retrieved.@NotNull CallableStatement
TheCallableStatement
from which a value is retrieved.void
A callback to which the resulting value is registered.Methods inherited from interface org.jooq.BindingScope
converterContext
Methods inherited from interface org.jooq.ExecuteScope
converterContext, executeContext
Methods inherited from interface org.jooq.Scope
configuration, creationTime, data, data, data, dialect, dsl, family, settings
-
Method Details
-
statement
TheCallableStatement
from which a value is retrieved. -
index
int index()The column index at which the value is retrieved. -
value
A callback to which the resulting value is registered. -
convert
@NotNull <T> @NotNull BindingGetStatementContext<T> convert(Converter<? super T, ? extends U> converter) Create a new context from this one using a converter.
-