All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.exasol.adapter.document.documentfetcher.files.csv.CsvConfiguration Maven / Gradle / Ivy

There is a newer version: 8.1.3
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy