-
- All Superinterfaces:
Scope
public interface BindingSQLContext<U> extends Scope
A container type forBinding.sql(BindingSQLContext)
arguments.- Author:
- Lukas Eder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T> BindingSQLContext<T>
convert(Converter<? extends T,? super U> converter)
Create a new context from this one using a converter.RenderContext
render()
TheRenderContext
that contains the generated SQL and the current SQL generation state.U
value()
The bind value that is being rendered.String
variable()
The variable string - mostly just a?
, or a named bind variable, such as:var
.
-
-
-
Method Detail
-
render
RenderContext render()
TheRenderContext
that contains the generated SQL and the current SQL generation state.
-
value
U value()
The bind value that is being rendered.
-
variable
String variable()
The variable string - mostly just a?
, or a named bind variable, such as:var
.
-
convert
<T> BindingSQLContext<T> convert(Converter<? extends T,? super U> converter)
Create a new context from this one using a converter.
-
-