Module org.jooq
Package org.jooq

Interface BindingRegisterContext<U>

All Superinterfaces:
Scope

public interface BindingRegisterContext<U> extends Scope
A container type for Binding.register(BindingRegisterContext) arguments.
Author:
Lukas Eder
  • Method Details

    • statement

      CallableStatement statement()
      The CallableStatement on which a bind variable should be registered.
    • index

      int index()
      The bind variable index at which a bind variable should be registered.
    • convert

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