Module org.jooq
Package org.jooq

Interface BindingSQLContext<U>

All Superinterfaces:
BindingScope, Scope

public interface BindingSQLContext<U> extends BindingScope
A container type for Binding.sql(BindingSQLContext) arguments.
Author:
Lukas Eder
  • Method Details Link icon

    • render Link icon

      @NotNull @NotNull RenderContext render()
      The RenderContext that contains the generated SQL and the current SQL generation state.
    • value Link icon

      U value()
      The bind value that is being rendered.
    • variable Link icon

      @NotNull @NotNull String variable()
      The variable string - mostly just a ?, or a named bind variable, such as :var.
    • convert Link icon

      @NotNull <T> @NotNull BindingSQLContext<T> convert(Converter<? extends T,? super U> converter)
      Create a new context from this one using a converter.