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

com.github.skjolber.stcsv.column.bi.CsvColumnValueConsumer Maven / Gradle / Ivy

There is a newer version: 1.0.25
Show newest version
package com.github.skjolber.stcsv.column.bi;

@FunctionalInterface
public interface CsvColumnValueConsumer {

	/**
	 * Generic interface for parsing values from a character array.
	 * 
	 * @param object target
	 * @param array character array
	 * @param start start index, inclusive
	 * @param end end index, exclusive
	 */
	
	void consume(T object, char[] array, int start, int end);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy