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

com.jchanghong.core.lang.Editor Maven / Gradle / Ivy

The newest version!
package com.jchanghong.core.lang;

/**
 * 编辑器接口,常用于对于集合中的元素做统一编辑
* 此编辑器两个作用: * *
 * 1、如果返回值为null,表示此值被抛弃 
 * 2、对对象做修改
 * 
* * @param 被编辑对象类型 * @author Looly */ @FunctionalInterface public interface Editor { /** * 修改过滤后的结果 * * @param t 被过滤的对象 * @return 修改后的对象,如果被过滤返回null */ T edit(T t); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy