org.echocat.jsu.support.SqlFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-stream-utils Show documentation
Show all versions of java-stream-utils Show documentation
Utilities to handle Java Streams.
package org.echocat.jsu.support;
import javax.annotation.Nullable;
import java.sql.SQLException;
@FunctionalInterface
public interface SqlFunction {
@Nullable
R apply(T t) throws SQLException;
}