com.fordfrog.xml2csv.ConversionConfig 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;
import java.util.Map;
public interface ConversionConfig {
String SEMI_COLON = ";";
String COMMA = ",";
String TILDE = "~";
Map getColumns();
String getSeparator();
boolean shouldTrim();
boolean shouldJoin();
String getRowItemName();
}