-
- All Superinterfaces:
ResourceManagingScope
,Scope
public interface BindingSetStatementContext<U> extends ResourceManagingScope
A container type forBinding.set(BindingSetStatementContext)
arguments.- Author:
- Lukas Eder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T> BindingSetStatementContext<T>
convert(Converter<? extends T,? super U> converter)
Create a new context from this one using a converter.int
index()
The bind variable index at which a bind variable should be bound.PreparedStatement
statement()
ThePreparedStatement
to which a bind variable should be bound.U
value()
The bind value that is being bound.
-
-
-
Method Detail
-
statement
PreparedStatement statement()
ThePreparedStatement
to which a bind variable should be bound.
-
index
int index()
The bind variable index at which a bind variable should be bound.
-
value
U value()
The bind value that is being bound.
-
convert
<T> BindingSetStatementContext<T> convert(Converter<? extends T,? super U> converter)
Create a new context from this one using a converter.
-
-