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

com.fordfrog.xml2csv.cli.SeparatorOption Maven / Gradle / Ivy

Go to download

Forked version of fordfrog xml2csv library that allows selection of xml elements via attributes

The newest version!
package com.fordfrog.xml2csv.cli;

import org.apache.commons.cli.Option;

public class SeparatorOption extends Option {

    private static final String MODE = "s";
    private static final String NAME = "separator";
    private static final boolean HAS_ARG = true;
    private static final String DESCRIPTION = "Character that should be used to separate fields. Default value " +
            "is semi-colon.";

    public SeparatorOption() {
        super(MODE, NAME, HAS_ARG, DESCRIPTION);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy