
com.magictools.core.lang.Matcher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of magic-tools-core Show documentation
Show all versions of magic-tools-core Show documentation
magic-tools核心,包括集合、字符串、Bean等工具
The newest version!
package com.magictools.core.lang;
/**
* 匹配接口
*
* @param 匹配的对象类型
* @author Looly
*/
@FunctionalInterface
public interface Matcher {
/**
* 给定对象是否匹配
*
* @param t 对象
* @return 是否匹配
*/
boolean match(T t);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy