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

com.github.liuyehcf.framework.compile.engine.rg.Pattern Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
package com.github.liuyehcf.framework.compile.engine.rg;

/**
 * Pattern,类似于java.util.regex.Pattern
 *
 * @author hechenfeng
 * @date 2018/04/16
 */
public interface Pattern {
    /**
     * 返回一个Matcher对象
     *
     * @param input 输入
     * @return 匹配器
     */
    Matcher matcher(String input);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy