Module org.jooq
Package org.jooq

Interface BindingSetSQLOutputContext<U>

All Superinterfaces:
ExecuteScope, ResourceManagingScope, Scope

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

    • output

      @NotNull @NotNull SQLOutput output()
      The SQLOutput to which a bind variable should be bound.
    • value

      U value()
      The bind value that is being bound.
    • convert

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