001package gu.sql2java; 002 003import com.google.common.base.Predicate; 004 005/** 006 * 模糊搜索匹配接口 007 * @author guyadong 008 * 009 */ 010public interface IFuzzyMatchFilter<K> extends Predicate<K>{ 011 public static interface MatchErrorHandler<K>{ 012 public void onMatchError(Throwable e, K pattern); 013 } 014 IFuzzyMatchFilter<K> withPattern(K pattern); 015 IFuzzyMatchFilter<K> withErrorHandler(MatchErrorHandler<K> errorHandler); 016}