Module org.jooq
Package org.jooq

Interface BindingGetSQLInputContext<U>

All Superinterfaces:
BindingScope, ExecuteScope, Scope

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

    • input

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

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