Package org.apache.poi.ss.formula.udf
Interface UDFFinder
-
- All Known Implementing Classes:
AggregatingUDFFinder
,AnalysisToolPak
,DefaultUDFFinder
,IndexedUDFFinder
public interface UDFFinder
Common interface for "Add-in" libraries and user defined function libraries.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FreeRefFunction
findFunction(java.lang.String name)
Returns executor by specified name.
-
-
-
Method Detail
-
findFunction
FreeRefFunction findFunction(java.lang.String name)
Returns executor by specified name. Returnsnull
if the function name is unknown.- Parameters:
name
- Name of function.- Returns:
- Function executor.
-
-