
com.star.lang.ItemsProcessor 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.util.Collection;
/**
* 遍历数据的处理
*
* @param 输入泛型
* @param 返回值泛型
* @author starhq
*/
@FunctionalInterface
public interface ItemsProcessor {
/**
* 处理
*
* @param instances 需要处理的数据
* @return 返回值
*/
R process(Collection instances);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy