| Package | Description |
|---|---|
| org.apache.poi.hssf.usermodel |
The usermodel package maps HSSF low level structures to familiar workbook/sheet model
|
| org.apache.poi.ss.formula |
This package contains common internal POI code for manipulating formulas.
|
| org.apache.poi.ss.usermodel |
| Modifier and Type | Class and Description |
|---|---|
class |
HSSFName
High Level Representation of a 'defined name' which could be a 'built-in' name,
'named range' or name of a user defined function.
|
| Modifier and Type | Method and Description |
|---|---|
void |
HSSFWorkbook.removeName(Name name)
Remove a name.
|
| Modifier and Type | Method and Description |
|---|---|
Name |
FormulaParsingWorkbook.createName()
Return the underlying workbook
|
| Modifier and Type | Method and Description |
|---|---|
Name |
Workbook.createName()
Creates a new (uninitialised) defined name in this workbook
|
Name |
Workbook.getName(String name) |
| Modifier and Type | Method and Description |
|---|---|
List<? extends Name> |
Workbook.getAllNames()
Returns all defined names.
|
List<? extends Name> |
Workbook.getNames(String name)
Returns all defined names with the given name.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Workbook.removeName(Name name)
Remove a defined name
|