Module org.jooq
Package org.jooq

Interface BindingSetSQLOutputContext<U>

All Superinterfaces:
ResourceManagingScope, Scope

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

    • output

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

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

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