com.exasol.adapter.document.documentfetcher.files.csv.CsvConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of virtual-schema-common-document-files Show documentation
Show all versions of virtual-schema-common-document-files Show documentation
Adapter for document data access from files.
package com.exasol.adapter.document.documentfetcher.files.csv;
/**
* Object to hold/pass along csv file configuration
*/
public class CsvConfiguration {
CsvConfiguration(final boolean headers){
this.headers = headers;
}
private final boolean headers ;
/**
* @return boolean that defines if the CSV file contains headers or not
*/
public boolean getHasHeaders(){
return headers;
}
}