Uses of Interface
org.apache.poi.ss.usermodel.Name
-
Packages that use Name Package Description org.apache.poi.hssf.usermodel usermodel package maps HSSF low level strutures to familiar workbook/sheet modelorg.apache.poi.ss.formula This package contains common internal POI code for manipulating formulas.org.apache.poi.ss.usermodel org.apache.poi.xssf.model org.apache.poi.xssf.streaming org.apache.poi.xssf.usermodel -
-
Uses of Name in org.apache.poi.hssf.usermodel
Classes in org.apache.poi.hssf.usermodel that implement Name Modifier and Type Class Description classHSSFNameHigh Level Representation of a 'defined name' which could be a 'built-in' name, 'named range' or name of a user defined function.Methods in org.apache.poi.hssf.usermodel with parameters of type Name Modifier and Type Method Description voidHSSFWorkbook. removeName(Name name)AsHSSFWorkbook.removeName(String)is not necessarily unique (name + sheet index is unique), this method is more accurate. -
Uses of Name in org.apache.poi.ss.formula
Methods in org.apache.poi.ss.formula that return Name Modifier and Type Method Description NameFormulaParsingWorkbook. createName()Return the underlying workbook -
Uses of Name in org.apache.poi.ss.usermodel
Methods in org.apache.poi.ss.usermodel that return Name Modifier and Type Method Description NameWorkbook. createName()Creates a new (uninitialised) defined name in this workbookNameWorkbook. getName(java.lang.String name)NameWorkbook. getNameAt(int nameIndex)Deprecated.4.0.0.Methods in org.apache.poi.ss.usermodel that return types with arguments of type Name Modifier and Type Method Description java.util.List<? extends Name>Workbook. getAllNames()Returns all defined names.java.util.List<? extends Name>Workbook. getNames(java.lang.String name)Returns all defined names with the given name.Methods in org.apache.poi.ss.usermodel with parameters of type Name Modifier and Type Method Description voidWorkbook. removeName(Name name)Remove a defined name -
Uses of Name in org.apache.poi.xssf.model
Classes in org.apache.poi.xssf.model that implement Name Modifier and Type Class Description protected classExternalLinksTable.ExternalNameMethods in org.apache.poi.xssf.model that return types with arguments of type Name Modifier and Type Method Description java.util.List<Name>ExternalLinksTable. getDefinedNames() -
Uses of Name in org.apache.poi.xssf.streaming
Methods in org.apache.poi.xssf.streaming that return Name Modifier and Type Method Description NameSXSSFWorkbook. createName()Creates a new (uninitialised) defined name in this workbookNameSXSSFWorkbook. getName(java.lang.String name)NameSXSSFWorkbook. getNameAt(int nameIndex)Deprecated.3.16.Methods in org.apache.poi.xssf.streaming that return types with arguments of type Name Modifier and Type Method Description java.util.List<? extends Name>SXSSFWorkbook. getAllNames()Returns all defined namesjava.util.List<? extends Name>SXSSFWorkbook. getNames(java.lang.String name)Returns all defined names with the given name.Methods in org.apache.poi.xssf.streaming with parameters of type Name Modifier and Type Method Description voidSXSSFWorkbook. removeName(Name name)Remove the given defined name -
Uses of Name in org.apache.poi.xssf.usermodel
Classes in org.apache.poi.xssf.usermodel that implement Name Modifier and Type Class Description classXSSFNameRepresents a defined named range in a SpreadsheetML workbook.Methods in org.apache.poi.xssf.usermodel with parameters of type Name Modifier and Type Method Description XSSFPivotTableXSSFSheet. createPivotTable(Name source, CellReference position)Create a pivot table using the Name range, at the given position.XSSFPivotTableXSSFSheet. createPivotTable(Name source, CellReference position, Sheet sourceSheet)Create a pivot table using the Name range reference on sourceSheet, at the given position.voidXSSFWorkbook. removeName(Name name)AsXSSFWorkbook.removeName(String)is not necessarily unique (name + sheet index is unique), this method is more accurate.
-