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

org.simpleflatmapper.csv.parser.TextFormat Maven / Gradle / Ivy

package org.simpleflatmapper.csv.parser;

public final class TextFormat {

    public final char separatorChar;
    public final char escapeChar;
    public final boolean yamlComment;

    public TextFormat(char separatorChar, char escapeChar, boolean yamlComment) {
        this.separatorChar = separatorChar;
        this.escapeChar = escapeChar;
        this.yamlComment = yamlComment;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy