Package | Description |
---|---|
net.sf.jett.model |
Provides value objects for JETT processing and enumerated objects for
things like style values.
|
net.sf.jett.transform |
Provides the classes and API necessary to transform pre-existing Excel
template spreadsheets (.xls and .xlsx are supported) into new spreadsheets
that are fully populated with user data.
|
net.sf.jett.util |
Provides utility functionality for JETT.
|
Modifier and Type | Method | Description |
---|---|---|
java.util.Map<java.lang.String,Formula> |
WorkbookContext.getFormulaMap() |
Returns the formula map, a
Map of formula keys to
Formulas , with the keys of the format "sheetName!formula". |
Modifier and Type | Method | Description |
---|---|---|
void |
WorkbookContext.setFormulaMap(java.util.Map<java.lang.String,Formula> formulaMap) |
Sets the formula map, a
Map of formula keys to
Formulas , with the keys of the format "sheetName!formula". |
Modifier and Type | Method | Description |
---|---|---|
void |
SheetTransformer.gatherFormulasAndTagLocations(org.apache.poi.ss.usermodel.Sheet sheet,
java.util.Map<java.lang.String,Formula> formulaMap,
java.util.Map<java.lang.String,java.lang.String> tagLocationsMap) |
Searches for all
Formulas contained on the given
Sheet . |
Modifier and Type | Method | Description |
---|---|---|
static java.lang.String |
FormulaUtil.createExcelFormulaString(java.lang.String formulaText,
Formula formula,
java.lang.String sheetName,
WorkbookContext context) |
Replaces cell references in the given formula text with the translated
cell references, and returns the formula string.
|
static java.lang.String |
FormulaUtil.createExcelFormulaString(Formula formula,
java.lang.String sheetName,
WorkbookContext context) |
Replaces cell references in the given formula text with the translated
cell references, and returns the formula string.
|
Modifier and Type | Method | Description |
---|---|---|
static java.util.Map<java.lang.String,java.util.List<CellRef>> |
FormulaUtil.createCellRefMap(java.util.Map<java.lang.String,Formula> formulaMap) |
Finds unique cell references in all
Formulas in the given
formula map. |
Copyright © 2012–2018 Jett Team. All rights reserved.