cn.hutool.db.handler.EntityListHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hutool-all Show documentation
Show all versions of hutool-all Show documentation
Hutool是一个小而全的Java工具类库,通过静态方法封装,降低相关API的学习成本,提高工作效率,使Java拥有函数式语言般的优雅,让Java语言也可以“甜甜的”。
package cn.hutool.db.handler;
import cn.hutool.db.Entity;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;
/**
* 结果集处理类 ,处理出的结果为Entity列表
* @author loolly
*
*/
public class EntityListHandler implements RsHandler>{
private static final long serialVersionUID = -2846240126316979895L;
/** 是否大小写不敏感 */
private final boolean caseInsensitive;
/**
* 创建一个 EntityListHandler对象
* @return EntityListHandler对象
*/
public static EntityListHandler create() {
return new EntityListHandler();
}
/**
* 构造
*/
public EntityListHandler() {
this(false);
}
/**
* 构造
*
* @param caseInsensitive 是否大小写不敏感
*/
public EntityListHandler(boolean caseInsensitive) {
this.caseInsensitive = caseInsensitive;
}
@Override
public List handle(ResultSet rs) throws SQLException {
return HandleHelper.handleRs(rs, new ArrayList<>(), this.caseInsensitive);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy