Package csv.util

Interface RowConverter<T>


public interface RowConverter<T>
Converts rows from a table into objects.
Author:
ralph
  • Method Summary

    Modifier and Type
    Method
    Description
    convert(Object[] row)
    Convert the given row into an object.
  • Method Details

    • convert

      T convert(Object[] row)
      Convert the given row into an object.
      Parameters:
      row - - the row from the table reader
      Returns:
      the converted object