
com.star.lang.ResultSetHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utils Show documentation
Show all versions of utils Show documentation
some utility class for java develop
The newest version!
package com.star.lang;
import java.sql.ResultSet;
/**
* 结果集处理器
*
* @author dbutil
*/
public interface ResultSetHandler {
/**
* 处理结果集
*
* 常用场景将rs转为pojo
*
* @param resultSet 结果集
* @return 返回对象
*/
T handle(ResultSet resultSet);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy