com.github.skjolber.stcsv.column.bi.CsvColumnValueConsumer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of databinder Show documentation
Show all versions of databinder Show documentation
High-performance CSV databinding library
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);
}