Interface Converter<T>

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      T readCell​(org.apache.poi.ss.usermodel.Cell cell)
      Read a Cell and convert to [T]
      T readCell​(org.apache.poi.ss.usermodel.Cell cell, java.lang.String regex)
      Read a Cell and convert to [T]
      void writeCell​(org.apache.poi.ss.usermodel.Cell cell, T value)
      Write a [T] value to cell
    • Method Detail

      • readCell

        T readCell​(org.apache.poi.ss.usermodel.Cell cell,
                   java.lang.String regex)
        Read a Cell and convert to [T]
        Parameters:
        cell - to read
        regex - regex validation
        Returns:
        a converted object [T] from a cell
      • readCell

        T readCell​(org.apache.poi.ss.usermodel.Cell cell)
        Read a Cell and convert to [T]
        Parameters:
        cell - to read
        Returns:
        a converted object [T] from a cell
      • writeCell

        void writeCell​(org.apache.poi.ss.usermodel.Cell cell,
                       T value)
        Write a [T] value to cell
        Parameters:
        cell - to write
        value - value to convert to cell