ZoneDiscoverySpecCsvOptions

data class ZoneDiscoverySpecCsvOptions(val delimiter: String? = null, val disableTypeInference: Boolean? = null, val encoding: String? = null, val headerRows: Int? = null)

Constructors

Link copied to clipboard
constructor(delimiter: String? = null, disableTypeInference: Boolean? = null, encoding: String? = null, headerRows: Int? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val delimiter: String? = null

Optional. The delimiter being used to separate values. This defaults to ','.

Link copied to clipboard

Optional. Whether to disable the inference of data type for CSV data. If true, all columns will be registered as strings.

Link copied to clipboard
val encoding: String? = null

Optional. The character encoding of the data. The default is UTF-8.

Link copied to clipboard
val headerRows: Int? = null

Optional. The number of rows to interpret as header rows that should be skipped when reading data rows.