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

com.github.rrsunhome.excelsql.config.TextParserConfig Maven / Gradle / Ivy

There is a newer version: 2.1.2
Show newest version
package com.github.rrsunhome.excelsql.config;

import java.util.List;

/**
 * @author : wangqijia
 * create at:  2021/11/7  下午6:52
 */
public class TextParserConfig extends BaseParserConfig {

    private String delimiter;

    public TextParserConfig(String delimiter) {
        this.delimiter = delimiter;
    }

    public TextParserConfig(String delimiter, List cellIndexArgs) {
        super(cellIndexArgs);
        this.delimiter = delimiter;
    }

    public String getDelimiter() {
        return delimiter;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy