
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
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{
default List get(
TenantID tenantID,
Comparator comparator ,
Predicate passFilter ,
ClassLoader classLoader){
return cache(tenantID, comparator, classLoader)
.stream()
.filter(passFilter)
.toList();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy