Interface RowFormatter

  • All Known Implementing Classes:
    CSVRowFormatter, RowFormatterImpl, TabRowFormatter

    public interface RowFormatter
    Interface denoting that object is able format list of objects to string. Implementations format string as comma separated values string and so.
    Author:
    Jakub Kulaviak
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.String format​(java.util.List<? extends java.lang.Object> row)
      Format row to string.
    • Method Detail

      • format

        java.lang.String format​(java.util.List<? extends java.lang.Object> row)
        Format row to string.
        Parameters:
        row - The objects to format (covariant).
        Returns:
        a string with everything nicely formatted.