org.unlaxer.tinyexpression.instances.TinyExpressionInstancesCache Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tinyExpression Show documentation
Show all versions of tinyExpression Show documentation
TinyExpression implemented with Unlaxer
The newest version!
package org.unlaxer.tinyexpression.instances;
import java.util.Comparator;
import java.util.List;
import java.util.function.Predicate;
import org.unlaxer.tinyexpression.Calculator;
public interface TinyExpressionInstancesCache extends TinyExpressionInstances{
boolean clearCache(TenantID tenantID);
List get(
TenantID tenantID,
Comparator comparator ,
Predicate passFilter ,
ClassLoader classLoader);
}