Interface CSVData


public interface CSVData
Provides methods for direct conversion to the csv format. It is best used in pure dataclasses since all fields of an implementing object will be extracted to the csv string. Default implementation can be overwritten if needed. For consistency reasons this is not recommended.
Author:
Lion Wagner
  • Method Details

    • toCSVData

      default String toCSVData()
    • toCSVData

      default String toCSVData​(char sep)
    • toCSVHeader

      default String toCSVHeader()
    • toCSVHeader

      default String toCSVHeader​(char sep)