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