use of org.nfunk.jep.function.PostfixMathCommandI in project dhis2-core by dhis2.
the class CustomFunctions method addFunctions.
public static void addFunctions(JEP parser) {
for (Entry<String, PostfixMathCommandI> e : AGGREGATE_FUNCTIONS.entrySet()) {
String fname = e.getKey();
PostfixMathCommandI cmd = e.getValue();
parser.addFunction(fname, cmd);
}
}
Aggregations