CsvNoHeader

data class CsvNoHeader(val data: List<CsvDataRow>) : Csv

Represents CSV data without a header row.

Constructors

Link copied to clipboard
constructor(data: List<CsvDataRow>)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

all rows in the CSV file, including header if present

Link copied to clipboard
open override val data: List<CsvDataRow>

the data rows

Functions

Link copied to clipboard
fun toCsvText(newLine: NewLine = NewLine.LF, escapeWhitespaces: Boolean = false): String

Converts the CSV data to a CSV-formatted string.

Link copied to clipboard
open override fun toString(): String