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

fr.boreal.io.csv.CSVConstants Maven / Gradle / Ivy

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;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy