gu.sql2java.IStringMatchFilter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sql2java-base Show documentation
Show all versions of sql2java-base Show documentation
sql2java common class package
package gu.sql2java;
/**
* 字符串模糊搜索匹配接口
* @author guyadong
*
*/
public interface IStringMatchFilter extends IFuzzyMatchFilter{
IStringMatchFilter withPattern(String pattern, int matchFlags);
IStringMatchFilter withPattern(String pattern, int... flags);
}