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

com.neko233.toolchain.common.regexPattern.MatcherApi Maven / Gradle / Ivy

package com.neko233.toolchain.common.regexPattern;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy