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

com.xiaoleilu.hutool.db.handler.EntitySetHandler Maven / Gradle / Ivy

package com.xiaoleilu.hutool.db.handler;

import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.LinkedHashSet;

import com.xiaoleilu.hutool.db.Entity;

/**
 * 结果集处理类 ,处理出的结果为Entity列表,结果不能重复(按照Entity对象去重)
 * @author loolly
 *
 */
public class EntitySetHandler implements RsHandler>{
	
	/**
	 * 创建一个 EntityHandler对象
	 * @return EntityHandler对象
	 */
	public static EntitySetHandler create() {
		return new EntitySetHandler();
	}

	@Override
	public LinkedHashSet handle(ResultSet rs) throws SQLException {
		return HandleHelper.handleRs(rs, new LinkedHashSet());
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy