- All Superinterfaces:
BindingScope
,ExecuteScope
,ResourceManagingScope
,Scope
public interface BindingSetSQLOutputContext<U>
extends ResourceManagingScope, ExecuteScope, BindingScope
A container type for
Binding.set(BindingSetSQLOutputContext)
arguments.- Author:
- Lukas Eder
-
Method Summary
Modifier and TypeMethodDescription<T> @NotNull BindingSetSQLOutputContext<T>
Create a new context from this one using a converter.@NotNull SQLOutput
output()
TheSQLOutput
to which a bind variable should be bound.value()
The bind value that is being bound.Methods inherited from interface org.jooq.BindingScope
converterContext
Methods inherited from interface org.jooq.ExecuteScope
converterContext, executeContext
Methods inherited from interface org.jooq.ResourceManagingScope
autoClose, autoFree, autoFree, autoFree, autoFree
Methods inherited from interface org.jooq.Scope
configuration, creationTime, data, data, data, dialect, dsl, family, settings
-
Method Details
-
output
TheSQLOutput
to which a bind variable should be bound. -
value
U value()The bind value that is being bound. -
convert
@NotNull <T> @NotNull BindingSetSQLOutputContext<T> convert(Converter<? extends T, ? super U> converter) Create a new context from this one using a converter.
-