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