Package org.jooq
Interface BindingSetSQLOutputContext<U>
-
- All Superinterfaces:
ResourceManagingScope
,Scope
public interface BindingSetSQLOutputContext<U> extends ResourceManagingScope
A container type forBinding.set(BindingSetSQLOutputContext)
arguments.- Author:
- Lukas Eder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T> BindingSetSQLOutputContext<T>
convert(Converter<? extends T,? super U> converter)
Create a new context from this one using a converter.java.sql.SQLOutput
output()
TheSQLOutput
to which a bind variable should be bound.U
value()
The bind value that is being bound.
-
-
-
Method Detail
-
output
java.sql.SQLOutput output()
TheSQLOutput
to which a bind variable should be bound.
-
value
U value()
The bind value that is being bound.
-
convert
<T> BindingSetSQLOutputContext<T> convert(Converter<? extends T,? super U> converter)
Create a new context from this one using a converter.
-
-