Classifier Csv Classifier
data class ClassifierCsvClassifier(val allowSingleColumn: Boolean? = null, val containsHeader: String? = null, val customDatatypeConfigured: Boolean? = null, val customDatatypes: List<String>? = null, val delimiter: String? = null, val disableValueTrimming: Boolean? = null, val headers: List<String>? = null, val quoteSymbol: String? = null)
Properties
Link copied to clipboard
Enables the processing of files that contain only one column.
Link copied to clipboard
Indicates whether the CSV file contains a header. This can be one of "ABSENT", "PRESENT", or "UNKNOWN".
Link copied to clipboard
A custom symbol to denote what combines content into a single column value. It must be different from the column delimiter.
Link copied to clipboard
A list of supported custom datatypes. Valid values are BINARY, BOOLEAN, DATE, DECIMAL, DOUBLE, FLOAT, INT, LONG, SHORT, STRING, TIMESTAMP.
Link copied to clipboard
Specifies whether to trim column values.
Link copied to clipboard
A custom symbol to denote what combines content into a single column value. It must be different from the column delimiter.