117118119120121122123124125
return e.toString(); } private static boolean test(String pattern, String value) throws ParseException { FullTextExpression e = FullTextParser.parse(null, pattern); return e.evaluate(value); } }
128129130131132133134135136