Interface BeanWriter<T>

Type Parameters:
T - the generic type
All Known Implementing Classes:
BeanWriterImpl

public interface BeanWriter<T>
Class for writing Beans.
  • Method Summary

    Modifier and Type
    Method
    Description
    Gets the row writer.
    void
    writeBean(T bean)
    Writes a single Bean to the table.
    void
    Writes a collection of Beans to the table.
    void
    Writes the header of a Bean type to the table.
  • Method Details

    • writeBeans

      void writeBeans(Collection<T> beans)
      Writes a collection of Beans to the table.
      Parameters:
      beans - beans to write to the table
    • writeBean

      void writeBean(T bean)
      Writes a single Bean to the table.
      Parameters:
      bean - bean to write to the table
    • writeHeader

      void writeHeader()
      Writes the header of a Bean type to the table.
    • getRowWriter

      RowWriter getRowWriter()
      Gets the row writer.
      Returns:
      the row writer