Package io.keikai.model
Interface SName
-
- All Superinterfaces:
FormulaContent
- All Known Implementing Classes:
AbstractNameAdv
,NameImpl
,TableNameImpl
public interface SName extends FormulaContent
A named range (or defined name) which refer to a region.- Since:
- 3.5.0
- Author:
- dennis
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getApplyToSheetName()
SBook
getBook()
String
getId()
String
getName()
CellRegion
getRefersToCellRegion()
String
getRefersToFormula()
String
getRefersToSheetName()
void
setApplyToSheetName(String name)
void
setRefersToFormula(String refersExpr)
-
Methods inherited from interface io.keikai.model.FormulaContent
clearFormulaResultCache, isFormulaParsingError
-
-
-
-
Method Detail
-
getId
String getId()
-
getName
String getName()
-
getBook
SBook getBook()
-
getRefersToSheetName
String getRefersToSheetName()
-
getRefersToCellRegion
CellRegion getRefersToCellRegion()
-
getRefersToFormula
String getRefersToFormula()
-
setRefersToFormula
void setRefersToFormula(String refersExpr)
-
getApplyToSheetName
String getApplyToSheetName()
-
setApplyToSheetName
void setApplyToSheetName(String name)
-
-