public Condition parse(String expression) throws CelParseException {
try {
return new CommonsPredicateCondition(createValangParser(expression).parseExpression());
} catch (ParseException pe) {
throw new CelParseException("Could not parse valang expression '" + expression + "'", pe);
}
}