fr.boreal.io.csv.CSVConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of integraal-io Show documentation
Show all versions of integraal-io Show documentation
Inputs and Outputs for integraal objects
The newest version!
package fr.boreal.io.csv;
public class CSVConstants {
/**
* Default CSV separator
*/
public static final char CSVSEPARATOR = ',';
/**
* Default CSV prefix
*/
public static final String CSVPREFIX = "";
/**
* If a csv is read we assume the first line defines the predicate arity
*/
public static final int CSVHEADERSIZE = 0;
/**
* If a csv is read via an RLS the arity is defined by the RLS
*/
public static final int CSVHEADERSIZE_WHEN_RLS = 0;
}