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

cn.geektool.core.lang.Matcher Maven / Gradle / Ivy

package cn.geektool.core.lang;

/**
 * 匹配接口
 * @author jd
 *
 * @param  匹配的对象类型
 */
@FunctionalInterface
public interface Matcher{
	/**
	 * 给定对象是否匹配
	 * @param t 对象
	 * @return 是否匹配
	 */
	boolean match(T t);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy