泛型方法举例
/**
* 根据产品代码、基金代码获取基金信息
*
* @param queryList 查询列表
* @return
*/
public List<? extends ProdNameBO> getProdName(List<? extends ProdNameBO> queryList) {
return queryList;
}
/**
* 分页查询
*
* @param list 列表
* @param startRow 起始行数 从0开始
* @param limit 每次查询的行数
* @return 子列表
*/
public static <T> List<T> pageQuery(List<T> list, Integer startRow, Integer limit) {
if (startRow < 0 || limit < 0) {
return Collections.emptyList();
}
if (list.isEmpty() || startRow > list.size()) {
return Collections.emptyList();
}
return list.size() > startRow + limit ? list.subList(startRow, startRow + limit) : list.subList(startRow, list.size());
}
/**
* 源对象属性拷贝生成目标类型对象
*
* @param source 源对象
* @param target 目标class对象
* @param <T> 目标对象
* @return
*/
public static <T> List<T> convertList(List<?> source, Class<T> target) {
if (source == null || target == null) {
return null;
}
return source.stream().map(t-> BeanCovertUtils.convert(t, target)).collect(Collectors.toList()) ;
}
上一篇:Java Unsafe类详解
下一篇:Collection