All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.netflix.infix.PredicateCompiler Maven / Gradle / Ivy

There is a newer version: 0.40.13
Show newest version
package com.netflix.infix;

import com.google.common.base.Predicate;

public interface PredicateCompiler {
    public Predicate compile(String input) throws Exception;
}