001 package org.shiftone.jrat.util.regex;
002
003
004 /**
005 * @author jeff@shiftone.org (Jeff Drost)
006 */
007 public interface Matcher {
008
009 public static final Matcher ALL = ConstantMatcher.ALL;
010 public static final Matcher NONE = ConstantMatcher.NONE;
011
012 boolean isMatch(String inputString);
013 }