com.github.skjolber.stcsv.column.tri.CsvColumnValueTriConsumer 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.tri;
@FunctionalInterface
public interface CsvColumnValueTriConsumer {
/**
* Generic interface for parsing values from a character array.
*
* @param object target
* @param intermediate intermediate helper / processor
* @param array character array
* @param start start index, inclusive
* @param end end index, exclusive
*/
void consume(T object, I intermediate, char[] array, int start, int end);
}