jdbi_modules.Fallback Maven / Gradle / Ivy
package jdbi_modules;
import jdbi_modules.internal.RowView;
import java.util.Collection;
/**
* @param the type the fallback maps to
* @since 14.04.2018
*/
public interface Fallback {
/**
* @param collector the collector
* @param rowView the row view
* @param store the store
*/
void map(Collector, Type> collector, RowView rowView, Store store);
}