-
- All Superinterfaces:
Scope
public interface BindingGetStatementContext<U> extends Scope
A container type forBinding.get(BindingGetStatementContext)
arguments.- Author:
- Lukas Eder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T> BindingGetStatementContext<T>
convert(Converter<? super T,? extends U> converter)
Create a new context from this one using a converter.int
index()
The column index at which the value is retrieved.CallableStatement
statement()
TheCallableStatement
from which a value is retrieved.void
value(U value)
A callback to which the resulting value is registered.
-
-
-
Method Detail
-
statement
CallableStatement statement()
TheCallableStatement
from which a value is retrieved.
-
index
int index()
The column index at which the value is retrieved.
-
value
void value(U value)
A callback to which the resulting value is registered.
-
convert
<T> BindingGetStatementContext<T> convert(Converter<? super T,? extends U> converter)
Create a new context from this one using a converter.
-
-