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

com.jn.sqlhelper.common.resultset.ResultSetExtractor Maven / Gradle / Ivy

There is a newer version: 5.0.7
Show newest version
package com.jn.sqlhelper.common.resultset;

import com.jn.langx.annotation.NonNull;
import com.jn.langx.annotation.Nullable;

import java.sql.ResultSet;
import java.sql.SQLException;

public interface ResultSetExtractor {
    @Nullable
    T extract(@NonNull ResultSet rs) throws SQLException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy