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

cn.hutool.db.handler.ValueListHandler Maven / Gradle / Ivy

Go to download

Hutool是一个小而全的Java工具类库,通过静态方法封装,降低相关API的学习成本,提高工作效率,使Java拥有函数式语言般的优雅,让Java语言也可以“甜甜的”。

There is a newer version: 5.8.34
Show newest version
package cn.hutool.db.handler;

import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;

/**
 * 结果集处理类 ,处理出的结果为List列表
 * @author loolly
 *
 */
public class ValueListHandler implements RsHandler>>{
	private static final long serialVersionUID = 1L;

	/**
	 * 创建一个 EntityListHandler对象
	 * @return EntityListHandler对象
	 */
	public static ValueListHandler create() {
		return new ValueListHandler();
	}

	@Override
	public List> handle(ResultSet rs) throws SQLException {
		final ArrayList> result = new ArrayList<>();
		while (rs.next()) {
			result.add(HandleHelper.handleRowToList(rs));
		}
		return result;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy