Module org.jooq
Package org.jooq

Interface BindingGetResultSetContext<U>

All Superinterfaces:
BindingScope, ExecuteScope, Scope

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

    • resultSet

      @NotNull @NotNull ResultSet resultSet()
      The ResultSet from which a value is retrieved.
    • index

      int index()
      The column index at which the value is retrieved.
    • field

      @NotNull @NotNull Field<U> field()
      The Field at column index index() whose value is retrieved.
    • value

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

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