|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use CellType | |
---|---|
org.apache.poi.hssf.usermodel | usermodel package maps HSSF low level strutures to familiar workbook/sheet model |
org.apache.poi.ss.format | This package contains classes that implement cell formatting |
org.apache.poi.ss.formula | This package contains common internal POI code for manipulating formulas. |
org.apache.poi.ss.usermodel | |
org.apache.poi.xssf.streaming | |
org.apache.poi.xssf.usermodel |
Uses of CellType in org.apache.poi.hssf.usermodel |
---|
Methods in org.apache.poi.hssf.usermodel that return CellType | |
---|---|
CellType |
HSSFCell.getCachedFormulaResultTypeEnum()
Only valid for formula cells |
CellType |
HSSFCell.getCellTypeEnum()
get the cells type (numeric, formula or string) |
Methods in org.apache.poi.hssf.usermodel with parameters of type CellType | |
---|---|
HSSFCell |
HSSFRow.createCell(int columnIndex,
CellType type)
Use this to create new cells within the row and return it. |
void |
HSSFCell.setCellType(CellType cellType)
Set the cells type (numeric, formula or string). |
Constructors in org.apache.poi.hssf.usermodel with parameters of type CellType | |
---|---|
HSSFCell(HSSFWorkbook book,
HSSFSheet sheet,
int row,
short col,
CellType type)
Creates new Cell - Should only be called by HSSFRow. |
Uses of CellType in org.apache.poi.ss.format |
---|
Methods in org.apache.poi.ss.format that return CellType | |
---|---|
static CellType |
CellFormat.ultimateTypeEnum(Cell cell)
Deprecated. POI 3.15 beta 3 Will be deleted when we make the CellType enum transition. See bug 59791. |
Uses of CellType in org.apache.poi.ss.formula |
---|
Methods in org.apache.poi.ss.formula that return CellType | |
---|---|
CellType |
BaseFormulaEvaluator.evaluateFormulaCellEnum(Cell cell)
If cell contains formula, it evaluates the formula, and saves the result of the formula. |
CellType |
EvaluationCell.getCachedFormulaResultTypeEnum()
Deprecated. POI 3.15 beta 3. Will be deleted when we make the CellType enum transition. See bug 59791. |
CellType |
EvaluationCell.getCellTypeEnum()
Deprecated. POI 3.15 beta 3. Will be deleted when we make the CellType enum transition. See bug 59791. |
Methods in org.apache.poi.ss.formula with parameters of type CellType | |
---|---|
static boolean |
DataValidationEvaluator.isType(Cell cell,
CellType type)
Note that this assumes the cell cached value is up to date and in sync with data edits |
Uses of CellType in org.apache.poi.ss.usermodel |
---|
Methods in org.apache.poi.ss.usermodel that return CellType | |
---|---|
CellType |
FormulaEvaluator.evaluateFormulaCellEnum(Cell cell)
If cell contains formula, it evaluates the formula, and saves the result of the formula. |
static CellType |
CellType.forInt(int code)
Deprecated. POI 3.15 beta 3. Used to transition code from int s to CellType s. |
CellType |
Cell.getCachedFormulaResultTypeEnum()
Only valid for formula cells |
CellType |
Cell.getCellTypeEnum()
Return the cell type. |
CellType |
CellValue.getCellTypeEnum()
Return the cell type. |
static CellType |
CellType.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static CellType[] |
CellType.values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods in org.apache.poi.ss.usermodel with parameters of type CellType | |
---|---|
Cell |
Row.createCell(int column,
CellType type)
Use this to create new cells within the row and return it. |
void |
Cell.setCellType(CellType cellType)
Set the cells type (numeric, formula or string). |
Uses of CellType in org.apache.poi.xssf.streaming |
---|
Methods in org.apache.poi.xssf.streaming that return CellType | |
---|---|
CellType |
SXSSFCell.getCachedFormulaResultTypeEnum()
Only valid for formula cells |
CellType |
SXSSFCell.getCellTypeEnum()
Return the cell type. |
Methods in org.apache.poi.xssf.streaming with parameters of type CellType | |
---|---|
SXSSFCell |
SXSSFRow.createCell(int column,
CellType type)
Use this to create new cells within the row and return it. |
void |
SXSSFCell.setCellType(CellType cellType)
Set the cells type (numeric, formula or string) |
Constructors in org.apache.poi.xssf.streaming with parameters of type CellType | |
---|---|
SXSSFCell(SXSSFRow row,
CellType cellType)
|
Uses of CellType in org.apache.poi.xssf.usermodel |
---|
Methods in org.apache.poi.xssf.usermodel that return CellType | |
---|---|
CellType |
XSSFCell.getCachedFormulaResultTypeEnum()
Only valid for formula cells |
CellType |
XSSFCell.getCellTypeEnum()
Return the cell type. |
Methods in org.apache.poi.xssf.usermodel with parameters of type CellType | |
---|---|
XSSFCell |
XSSFRow.createCell(int columnIndex,
CellType type)
Use this to create new cells within the row and return it. |
void |
XSSFCell.setCellType(CellType cellType)
Set the cells type (numeric, formula or string) |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |