Interface BindingSetSQLOutputContext<U>
- All Superinterfaces:
BindingScope, ExecuteScope, ResourceManagingScope, Scope
public interface BindingSetSQLOutputContext<U>
extends ResourceManagingScope, ExecuteScope, BindingScope
A container type for
Binding.set(BindingSetSQLOutputContext)
arguments.- Author:
- Lukas Eder
-
Method Summary
Modifier and TypeMethodDescription<T> @NotNull BindingSetSQLOutputContext<T> Create a new context from this one using a converter.@NotNull SQLOutputoutput()TheSQLOutputto which a bind variable should be bound.value()The bind value that is being bound.Methods inherited from interface BindingScope
converterContextMethods inherited from interface ExecuteScope
converterContext, executeContext, policyContextMethods inherited from interface ResourceManagingScope
autoClose, autoClose, autoFree, autoFree, autoFree, autoFreeMethods inherited from interface Scope
configuration, creationTime, data, data, data, dialect, dsl, family, settings
-
Method Details
-
output
-
value
U value()The bind value that is being bound. -
convert
@NotNull <T> @NotNull BindingSetSQLOutputContext<T> convert(Converter<? extends T, ? super U> converter) Create a new context from this one using a converter.
-