cn.iotwasu.hutool.core.lang.Matcher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk-common Show documentation
Show all versions of java-sdk-common Show documentation
Wasu Iot Open API SDK for Java
package cn.iotwasu.hutool.core.lang;
/**
* 匹配接口
*
* @author Looly
* @param 匹配的对象类型
*/
public interface Matcher {
/**
* 给定对象是否匹配
*
* @param t 对象
* @return 是否匹配
*/
boolean match(T t);
}