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

com.darwinsys.csv.CSVParser Maven / Gradle / Ivy

package com.darwinsys.csv;

import java.util.List;

/** The parser interface */
public interface CSVParser {

	/**
	 * Parse one String, and return it as a list of strings.
	 * @param line The line to be parsed
	 * @return The parsed list of strings.
	 */
	public List parse(String line);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy