com.fordfrog.xml2csv.cli.SeparatorOption Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xml-to-csv Show documentation
Show all versions of xml-to-csv Show documentation
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);
}
}