Module org.jooq
Package org.jooq

Interface BindingGetSQLInputContext<U>

All Superinterfaces:
Scope

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

    • input

      SQLInput input()
      The SQLInput from which a value is retrieved.
    • value

      void value(U value)
      A callback to which the resulting value is registered.
    • convert

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