com.fordfrog.xml2csv.cli.InputFileOption 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 InputFileOption extends Option {
private static final String MODE = "i";
private static final String NAME = "inputFile";
private static final boolean HAS_ARG = true;
private static final String DESCRIPTION = "Path to the input XML file. " +
"Input file content should always be in UTF-8 encoding.";
public InputFileOption() {
super(MODE, NAME, HAS_ARG, DESCRIPTION);
}
}