- All Superinterfaces:
- BindingScope,- ExecuteScope,- ResourceManagingScope,- Scope
public interface BindingSetStatementContext<U>
extends ResourceManagingScope, ExecuteScope, BindingScope
A container type for 
Binding.set(BindingSetStatementContext)
 arguments.- Author:
- Lukas Eder
- 
Method SummaryModifier and TypeMethodDescription<T> @NotNull BindingSetStatementContext<T> Create a new context from this one using a converter.intindex()The bind variable index at which a bind variable should be bound.@NotNull PreparedStatementThePreparedStatementto which a bind variable should be bound.value()The bind value that is being bound.Methods inherited from interface org.jooq.BindingScopeconverterContextMethods inherited from interface org.jooq.ExecuteScopeconverterContext, executeContextMethods inherited from interface org.jooq.ResourceManagingScopeautoClose, autoFree, autoFree, autoFree, autoFreeMethods inherited from interface org.jooq.Scopeconfiguration, creationTime, data, data, data, dialect, dsl, family, settings
- 
Method Details- 
statementThePreparedStatementto which a bind variable should be bound.
- 
indexint index()The bind variable index at which a bind variable should be bound.
- 
valueU value()The bind value that is being bound.
- 
convert@NotNull <T> @NotNull BindingSetStatementContext<T> convert(Converter<? extends T, ? super U> converter) Create a new context from this one using a converter.
 
-