Module org.jooq
Package org.jooq

Interface BindingRegisterContext<U>

All Superinterfaces:
BindingScope, ExecuteScope, Scope

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

    • statement

      @NotNull @NotNull 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

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