-
- All Superinterfaces:
Scope
public interface BindingRegisterContext<U> extends Scope
A container type forBinding.register(BindingRegisterContext)
arguments.- Author:
- Lukas Eder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T> BindingRegisterContext<T>
convert(Converter<? super T,? extends 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 registered.CallableStatement
statement()
TheCallableStatement
on which a bind variable should be registered.
-
-
-
Method Detail
-
statement
CallableStatement statement()
TheCallableStatement
on which a bind variable should be registered.
-
index
int index()
The bind variable index at which a bind variable should be registered.
-
convert
<T> BindingRegisterContext<T> convert(Converter<? super T,? extends U> converter)
Create a new context from this one using a converter.
-
-