Package com.netflix.infix.lang.infix.antlr

Examples of com.netflix.infix.lang.infix.antlr.EventFilterParser.filter()


* @author elandau
*/
public class InfixCompiler implements PredicateCompiler {
    public Predicate<Object> compile(String input) throws Exception {
        EventFilterParser parser               = EventFilterParser.createParser(input);
        EventFilterParser.filter_return result = parser.filter();
       
        return ((PredicateTranslatable) result.getTree()).translate();
    }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.