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

org.sfm.utils.RowHandler Maven / Gradle / Ivy

Go to download

Java library to map flat record - ResultSet, csv - to java object with minimum configuration and low footprint.

There is a newer version: 1.10.3
Show newest version
package org.sfm.utils;

/**
 * Functional interface use to provide call back when the mapper is getting new value.

* It is equivalent to a {@link java.util.function.Consumer} apart that it allows for checked Exception. * * @param the type of the call back argument */ public interface RowHandler { void handle(T t) throws Exception; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy