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

com.fordfrog.xml2csv.cli.ColumnOption 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 ColumnOption extends Option {

    private static final String MODE = "c";
    private static final String NAME = "columns";
    private static final boolean HAS_ARG = true;
    private static final String DESCRIPTION = "List of columns that should be output to the CSV file. " +
            "These names must correspond to the element names within the item element.";

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy