Package io.keikai.model.impl.sys.formula
Class EvalBook
- java.lang.Object
-
- io.keikai.model.impl.sys.formula.EvalBook
-
- All Implemented Interfaces:
Serializable
,EvaluationWorkbook
,FormulaParsingWorkbook
public final class EvalBook extends Object implements EvaluationWorkbook, FormulaParsingWorkbook, Serializable
modified from org.apache.poi.xssf.usermodel.XSSFEvaluationWorkbook- Author:
- Josh Micich, Pao
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.poi.ss.formula.EvaluationWorkbook
EvaluationWorkbook.ExternalName, EvaluationWorkbook.ExternalSheet, EvaluationWorkbook.ExternalSheetRange
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clearAllCachedResultValues()
Propagated fromWorkbookEvaluator.clearAllCachedResultValues()
to clear locally cached data.int
convertFromExternSheetIndex(int externSheetIndex)
HSSF Only - convert an external sheet index to an internal sheet index, for an external-style reference to one of this workbook's own sheetsint
convertLastIndexFromExternSheetIndex(int externSheetIndex)
Name
createName()
Return the underlying workbookTablePtg
createTablePtg(String tableName, Object[] specifiers, int sheetIndex, int rowIdx, int colIdx)
Ptg
get3DReferencePtg(AreaReference area, SheetIdentifier sheet)
Produce the appropriate Ptg for a 3d area referencePtg
get3DReferencePtg(CellReference cell, SheetIdentifier sheet)
Produce the appropriate Ptg for a 3d cell referenceString
getBookNameFromExternalLinkIndex(String externalLinkIndex)
Return the associated book name of the specified ExternalLink index.EvaluationWorkbook.ExternalName
getExternalName(int externSheetIndex, int externNameIndex)
HSSF Only - fetch the external-style name detailsEvaluationWorkbook.ExternalName
getExternalName(String nameName, String sheetName, int externalWorkbookNumber)
XSSF Only - fetch the external-style name detailsEvaluationWorkbook.ExternalSheet
getExternalSheet(int externSheetIndex)
HSSF Only - fetch the external-style sheet detailsEvaluationWorkbook.ExternalSheet
getExternalSheet(String firstSheetName, String lastSheetName, int externalWorkbookNumber)
XSSF Only - fetch the external-style sheet detailsint
getExternalSheetIndex(String sheetName)
gets the externSheet index for a sheet from this workbookint
getExternalSheetIndex(String workbookName, String sheetName)
gets the externSheet index for a sheet from an external workbookMap<String,Formula>
getFormulaParsingCache()
Ptg[]
getFormulaTokens(int sheetIndex, String formula)
Ptg[]
getFormulaTokens(EvaluationCell cell)
EvaluationName
getName(String name, int sheetIndex)
named range name matching is case insensitiveEvaluationName
getName(String name, String sheetName)
named range name matching is case-insensitiveEvaluationName
getName(NamePtg namePtg)
EvaluationName
getName(NamePtg namePtg, int contextSheetIndex)
Ptg
getNameXPtg(String name, SheetIdentifier sheet)
Return an external name (named range, function, user-defined function) PtgSBook
getNBook()
EvaluationName
getOrCreateName(String name, int sheetIndex)
EvaluationSheet
getSheet(int sheetIndex)
Get the sheet identified by the given 0-based index.int
getSheetIndex(String sheetName)
Finds a sheet index by case insensitive name.int
getSheetIndex(EvaluationSheet evalSheet)
String
getSheetName(int sheetIndex)
Returns the name of the sheet at the given 0-based index.SpreadsheetVersion
getSpreadsheetVersion()
Returns an enum holding spreadhseet properties specific to an Excel version ( max column and row numbers, max arguments to a function, etc.)Table
getTable(String name)
XSSF Only - gets a table that exists in the worksheetString
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.UDFFinder
getUDFFinder()
boolean
isAllowedDeferredNamePtg()
In HSSF, we need to render a formula string from stored Ptg, so a formula cannot be parsed to DeferredNamePtg.String
resolveNameXText(NameXPtg n)
-
-
-
Constructor Detail
-
EvalBook
public EvalBook(SBook book)
-
-
Method Detail
-
getNBook
public SBook getNBook()
-
getFormulaTokens
public Ptg[] getFormulaTokens(EvaluationCell cell)
- Specified by:
getFormulaTokens
in interfaceEvaluationWorkbook
-
getFormulaTokens
public Ptg[] getFormulaTokens(int sheetIndex, String formula)
- Specified by:
getFormulaTokens
in interfaceEvaluationWorkbook
-
getName
public EvaluationName getName(String name, int sheetIndex)
Description copied from interface:FormulaParsingWorkbook
named range name matching is case insensitive- Specified by:
getName
in interfaceEvaluationWorkbook
- Specified by:
getName
in interfaceFormulaParsingWorkbook
-
getName
public EvaluationName getName(NamePtg namePtg)
- Specified by:
getName
in interfaceEvaluationWorkbook
-
getName
public EvaluationName getName(NamePtg namePtg, int contextSheetIndex)
-
getExternalName
public EvaluationWorkbook.ExternalName getExternalName(int externSheetIndex, int externNameIndex)
Description copied from interface:EvaluationWorkbook
HSSF Only - fetch the external-style name details- Specified by:
getExternalName
in interfaceEvaluationWorkbook
-
getUDFFinder
public UDFFinder getUDFFinder()
- Specified by:
getUDFFinder
in interfaceEvaluationWorkbook
-
getSheet
public EvaluationSheet getSheet(int sheetIndex)
Description copied from interface:EvaluationWorkbook
Get the sheet identified by the given 0-based index.- Specified by:
getSheet
in interfaceEvaluationWorkbook
- Parameters:
sheetIndex
- The 0-based index of the sheet- Returns:
- The sheet
-
getSheetIndex
public int getSheetIndex(EvaluationSheet evalSheet)
- Specified by:
getSheetIndex
in interfaceEvaluationWorkbook
- Returns:
- -1 if the specified sheet is from a different book
-
getSheetIndex
public int getSheetIndex(String sheetName)
Description copied from interface:EvaluationWorkbook
Finds a sheet index by case insensitive name.- Specified by:
getSheetIndex
in interfaceEvaluationWorkbook
- Returns:
- the index of the sheet matching the specified name. -1 if not found
-
getSheetName
public String getSheetName(int sheetIndex)
Description copied from interface:EvaluationWorkbook
Returns the name of the sheet at the given 0-based index.- Specified by:
getSheetName
in interfaceEvaluationWorkbook
- Parameters:
sheetIndex
- The 0-based index of the sheet- Returns:
- The name of the sheet
-
getExternalSheet
public EvaluationWorkbook.ExternalSheet getExternalSheet(int externSheetIndex)
Description copied from interface:EvaluationWorkbook
HSSF Only - fetch the external-style sheet detailsReturn will have no workbook set if it's actually in our own workbook
- Specified by:
getExternalSheet
in interfaceEvaluationWorkbook
- Returns:
- The found sheet or null if not found
-
resolveNameXText
public String resolveNameXText(NameXPtg n)
- Specified by:
resolveNameXText
in interfaceEvaluationWorkbook
-
convertFromExternSheetIndex
public int convertFromExternSheetIndex(int externSheetIndex)
Description copied from interface:EvaluationWorkbook
HSSF Only - convert an external sheet index to an internal sheet index, for an external-style reference to one of this workbook's own sheets- Specified by:
convertFromExternSheetIndex
in interfaceEvaluationWorkbook
- Returns:
- the sheet index of the sheet with the given external index.
-
convertLastIndexFromExternSheetIndex
public int convertLastIndexFromExternSheetIndex(int externSheetIndex)
- Specified by:
convertLastIndexFromExternSheetIndex
in interfaceEvaluationWorkbook
-
getExternalSheetIndex
public int getExternalSheetIndex(String sheetName)
Description copied from interface:FormulaParsingWorkbook
gets the externSheet index for a sheet from this workbook- Specified by:
getExternalSheetIndex
in interfaceFormulaParsingWorkbook
-
getExternalSheetIndex
public int getExternalSheetIndex(String workbookName, String sheetName)
Description copied from interface:FormulaParsingWorkbook
gets the externSheet index for a sheet from an external workbook- Specified by:
getExternalSheetIndex
in interfaceFormulaParsingWorkbook
- Parameters:
workbookName
- e.g. "Budget.xls"sheetName
- a name of a sheet in that workbook
-
getExternalSheet
public EvaluationWorkbook.ExternalSheet getExternalSheet(String firstSheetName, String lastSheetName, int externalWorkbookNumber)
Description copied from interface:EvaluationWorkbook
XSSF Only - fetch the external-style sheet detailsReturn will have no workbook set if it's actually in our own workbook
- Specified by:
getExternalSheet
in interfaceEvaluationWorkbook
- Returns:
- The found sheet
-
getExternalName
public EvaluationWorkbook.ExternalName getExternalName(String nameName, String sheetName, int externalWorkbookNumber)
Description copied from interface:EvaluationWorkbook
XSSF Only - fetch the external-style name details- Specified by:
getExternalName
in interfaceEvaluationWorkbook
-
clearAllCachedResultValues
public void clearAllCachedResultValues()
Description copied from interface:EvaluationWorkbook
Propagated fromWorkbookEvaluator.clearAllCachedResultValues()
to clear locally cached data. Implementations must call the same method on all referencedEvaluationSheet
instances, as well as clearing local caches.- Specified by:
clearAllCachedResultValues
in interfaceEvaluationWorkbook
- See Also:
WorkbookEvaluator.clearAllCachedResultValues()
-
createName
public Name createName()
Description copied from interface:FormulaParsingWorkbook
Return the underlying workbook- Specified by:
createName
in interfaceFormulaParsingWorkbook
-
getTable
public Table getTable(String name)
Description copied from interface:FormulaParsingWorkbook
XSSF Only - gets a table that exists in the worksheet- Specified by:
getTable
in interfaceFormulaParsingWorkbook
-
getNameXPtg
public Ptg getNameXPtg(String name, SheetIdentifier sheet)
Description copied from interface:FormulaParsingWorkbook
Return an external name (named range, function, user-defined function) Ptg- Specified by:
getNameXPtg
in interfaceFormulaParsingWorkbook
-
get3DReferencePtg
public Ptg get3DReferencePtg(CellReference cell, SheetIdentifier sheet)
Description copied from interface:FormulaParsingWorkbook
Produce the appropriate Ptg for a 3d cell reference- Specified by:
get3DReferencePtg
in interfaceFormulaParsingWorkbook
-
get3DReferencePtg
public Ptg get3DReferencePtg(AreaReference area, SheetIdentifier sheet)
Description copied from interface:FormulaParsingWorkbook
Produce the appropriate Ptg for a 3d area reference- Specified by:
get3DReferencePtg
in interfaceFormulaParsingWorkbook
-
getSpreadsheetVersion
public SpreadsheetVersion getSpreadsheetVersion()
Description copied from interface:FormulaParsingWorkbook
Returns an enum holding spreadhseet properties specific to an Excel version ( max column and row numbers, max arguments to a function, etc.)- Specified by:
getSpreadsheetVersion
in interfaceEvaluationWorkbook
- Specified by:
getSpreadsheetVersion
in interfaceFormulaParsingWorkbook
-
getBookNameFromExternalLinkIndex
public String getBookNameFromExternalLinkIndex(String externalLinkIndex)
Description copied from interface:FormulaParsingWorkbook
Return the associated book name of the specified ExternalLink index. Excel stores ExternalLink index in place of the [].(e.g. [1]Sheet1:Sheet3!xxx)- Specified by:
getBookNameFromExternalLinkIndex
in interfaceFormulaParsingWorkbook
- Parameters:
externalLinkIndex
- external link index- Returns:
- the associated book name of the specified ExternalLink index.
-
getOrCreateName
public EvaluationName getOrCreateName(String name, int sheetIndex)
-
isAllowedDeferredNamePtg
public boolean isAllowedDeferredNamePtg()
Description copied from interface:FormulaParsingWorkbook
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.- Specified by:
isAllowedDeferredNamePtg
in interfaceFormulaParsingWorkbook
- 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.
-
getName
public EvaluationName getName(String name, String sheetName)
Description copied from interface:FormulaParsingWorkbook
named range name matching is case-insensitive- Specified by:
getName
in interfaceFormulaParsingWorkbook
-
createTablePtg
public TablePtg createTablePtg(String tableName, Object[] specifiers, int sheetIndex, int rowIdx, int colIdx)
- Specified by:
createTablePtg
in interfaceFormulaParsingWorkbook
- Returns:
-
getTableName
public String getTableName(String name)
Description copied from interface:FormulaParsingWorkbook
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.- Specified by:
getTableName
in interfaceFormulaParsingWorkbook
- Returns:
-
-