Class RowViewImpl

java.lang.Object
org.jdbi.v3.core.result.RowView
org.jdbi.v3.core.result.internal.RowViewImpl

public class RowViewImpl extends RowView
  • Constructor Details

  • Method Details

    • getRow

      public Object getRow(Type type)
      Use a row mapper to extract a type from the current ResultSet row.
      Specified by:
      getRow in class RowView
      Parameters:
      type - the type to map
      Returns:
      the materialized object
    • getColumn

      public <T> T getColumn(int column, QualifiedType<T> type)
      Use a qualified column mapper to extract a type from the current ResultSet row.
      Specified by:
      getColumn in class RowView
      Type Parameters:
      T - the type to map
      Parameters:
      column - the column index
      type - the QualifiedType of the type
      Returns:
      the materialized T
    • getColumn

      public <T> T getColumn(String column, QualifiedType<T> type)
      Use a qualified column mapper to extract a type from the current ResultSet row.
      Specified by:
      getColumn in class RowView
      Type Parameters:
      T - the type to map
      Parameters:
      column - the column name
      type - the QualifiedType of the type
      Returns:
      the materialized T