Example usage for org.apache.poi.ss.formula.udf AggregatingUDFFinder add

List of usage examples for org.apache.poi.ss.formula.udf AggregatingUDFFinder add

Introduction

In this page you can find the example usage for org.apache.poi.ss.formula.udf AggregatingUDFFinder add.

Prototype

public void add(UDFFinder toolPack) 

Source Link

Document

Add a new toolpack

Usage

From source file:com.dataart.spreadsheetanalytics.engine.PoiWorkbookConverters.java

License:Apache License

@Override
public UDFFinder getUDFFinder() {
    AggregatingUDFFinder result = new AggregatingUDFFinder(UDFFinder.DEFAULT);
    result.add(Functions.getUdfFinder());
    return result;
}