Package io.keikai.range.impl.imexp
Class XlfnFunctions
java.lang.Object
io.keikai.range.impl.imexp.XlfnFunctions
Manages the set of Excel future functions that require the
_xlfn.
prefix when exported to OOXML format.
The list is based on the [MS-XLSX] specification, Section 2.2.3 (Functions).
- Since:
- 6.3.0
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionstatic StringaddPrefixes(String formula) Scan a formula string and prepend_xlfn.to every future- function call that does not already have the prefix.static booleanisFutureFunction(String name) Returnstrueif the given function name (case-insensitive) is an Excel future function that requires the_xlfn.prefix.
-
Method Details
-
isFutureFunction
Returnstrueif the given function name (case-insensitive) is an Excel future function that requires the_xlfn.prefix. -
addPrefixes
Scan a formula string and prepend_xlfn.to every future- function call that does not already have the prefix.- Parameters:
formula- the formula string (without leading '=')- Returns:
- the formula with
_xlfn.prefixes added where needed
-