Interface FormulaParsingWorkbook

    • Method Detail

      • getName

        EvaluationName getName​(String name,
                               int sheetIndex)
        named range name matching is case insensitive
      • isAllowedDeferredNamePtg

        boolean isAllowedDeferredNamePtg()
        In HSSF, we need to render a formula string from stored Ptg, so a formula cannot be parsed to DeferredNamePtg. Because DeferredNamePtg will be read as UnknownPtg for it's not written out.
        Returns:
        true for using DeferredNamePtg to represent a non-existed defined name during formula parsing. If false, parser will create a defined name for a non-existed one.
      • getBookNameFromExternalLinkIndex

        String getBookNameFromExternalLinkIndex​(String externalLinkIndex)
        Return the associated book name of the specified ExternalLink index. Excel stores ExternalLink index in place of the [].(e.g. [1]Sheet1:Sheet3!xxx)
        Parameters:
        externalLinkIndex - external link index
        Returns:
        the associated book name of the specified ExternalLink index.
      • createTablePtg

        TablePtg createTablePtg​(String tableName,
                                Object[] specifiers,
                                int sheetIndex,
                                int rowIdx,
                                int colIdx)
        Parameters:
        tableName -
        specifiers -
        sheetIndex -
        rowIdx -
        colIdx -
        Returns:
        Since:
        3.9.7, 3.9.7
      • getTableName

        String getTableName​(String name)
        Given a name and return the real table name(consider uppercase/lowecase); It can be used to check whether the specified name is a table name if the returned name is null.
        Parameters:
        name -
        Returns:
        Since:
        3.9.7
      • createName

        Name createName()
        Return the underlying workbook
      • getTable

        Table getTable​(String name)
        XSSF Only - gets a table that exists in the worksheet
      • getNameXPtg

        Ptg getNameXPtg​(String name,
                        SheetIdentifier sheet)
        Return an external name (named range, function, user-defined function) Ptg
      • getExternalSheetIndex

        int getExternalSheetIndex​(String sheetName)
        gets the externSheet index for a sheet from this workbook
      • getExternalSheetIndex

        int getExternalSheetIndex​(String workbookName,
                                  String sheetName)
        gets the externSheet index for a sheet from an external workbook
        Parameters:
        workbookName - e.g. "Budget.xls"
        sheetName - a name of a sheet in that workbook
      • getSpreadsheetVersion

        SpreadsheetVersion getSpreadsheetVersion()
        Returns an enum holding spreadhseet properties specific to an Excel version ( max column and row numbers, max arguments to a function, etc.)