Uses of Class
loci.poi.hssf.record.NameRecord
-
Packages that use NameRecord Package Description loci.poi.hssf.model Provides low level API structures for reading, writing, modifying XLS files.loci.poi.hssf.usermodel usermodel package maps HSSF low level strutures to familiar workbook/sheet model -
-
Uses of NameRecord in loci.poi.hssf.model
Methods in loci.poi.hssf.model that return NameRecord Modifier and Type Method Description NameRecord
Workbook. addName(NameRecord name)
creates new nameNameRecord
Workbook. createBuiltInName(byte builtInName, int index)
Generates a NameRecord to represent a built-in regionNameRecord
Workbook. createName()
creates new nameNameRecord
Workbook. getNameRecord(int index)
gets the name recordNameRecord
Workbook. getSpecificBuiltinRecord(byte name, int sheetIndex)
Retrieves the Builtin NameRecord that matches the name and index There shouldn't be too many names to make the sequential search too slowMethods in loci.poi.hssf.model with parameters of type NameRecord Modifier and Type Method Description NameRecord
Workbook. addName(NameRecord name)
creates new name -
Uses of NameRecord in loci.poi.hssf.usermodel
Constructors in loci.poi.hssf.usermodel with parameters of type NameRecord Constructor Description HSSFName(Workbook book, NameRecord name)
Creates new HSSFName - called by HSSFWorkbook to create a sheet from scratch.
-