Module org.jooq
Package org.jooq

Interface BindingGetResultSetContext<U>

All Superinterfaces:
Scope

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

    • resultSet

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

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

      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

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