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

top.jfunc.common.Editor Maven / Gradle / Ivy

There is a newer version: 1.8.5
Show newest version
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); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy