Interface BindingRegisterContext<U>
- All Superinterfaces:
BindingScope, ExecuteScope, Scope
A container type for
Binding.register(BindingRegisterContext)
arguments.- Author:
- Lukas Eder
-
Method Summary
Modifier and TypeMethodDescription<T> @NotNull BindingRegisterContext<T> Create a new context from this one using a converter.intindex()The bind variable index at which a bind variable should be registered.@NotNull CallableStatementTheCallableStatementon which a bind variable should be registered.Methods inherited from interface BindingScope
converterContextMethods inherited from interface ExecuteScope
converterContext, executeContext, policyContextMethods inherited from interface Scope
configuration, creationTime, data, data, data, dialect, dsl, family, settings
-
Method Details
-
statement
TheCallableStatementon which a bind variable should be registered. -
index
int index()The bind variable index at which a bind variable should be registered. -
convert
@NotNull <T> @NotNull BindingRegisterContext<T> convert(Converter<? super T, ? extends U> converter) Create a new context from this one using a converter.
-