top.jfunc.common.Editor 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
common utils like IOUtil,StrUtil,HoldProcessor.etc.
package top.jfunc.common;
/**
* 编辑器接口,
* 1.常用于对于集合中的元素做统一编辑
*
* 1、如果返回值为null
,表示此值被抛弃
* 2、对对象做修改
*
*
* 2.对Model或者Record的列进行编辑
* @param 被编辑对象类型
* @author Looly,熊诗言
*/
@FunctionalInterface
public interface Editor {
/**
* 修改过滤后的结果
*
* @param t 被过滤的对象
* @return 修改后的对象,如果被过滤返回null
*/
public T edit(T t);
}