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

org.echocat.jsu.support.SqlFunction Maven / Gradle / Ivy

There is a newer version: 2.0.6
Show newest version
package org.echocat.jsu.support;

import javax.annotation.Nullable;
import java.sql.SQLException;

@FunctionalInterface
public interface SqlFunction {

    @Nullable
    R apply(T t) throws SQLException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy