Uses of Class
org.apache.poi.ss.usermodel.CellType
-
Packages that use CellType Package Description org.apache.poi.hssf.record Record package contains class representations for XLS binary strutures.org.apache.poi.hssf.usermodel The usermodel package maps HSSF low level structures to familiar workbook/sheet modelorg.apache.poi.ss.format This package contains classes that implement cell formattingorg.apache.poi.ss.formula This package contains common internal POI code for manipulating formulas.org.apache.poi.ss.usermodel -
-
Uses of CellType in org.apache.poi.hssf.record
Methods in org.apache.poi.hssf.record that return CellType Modifier and Type Method Description CellTypeFormulaRecord. getCachedResultTypeEnum()Returns the type of the cached resultCellTypeOldFormulaRecord. getCachedResultTypeEnum()Returns the type of the cached resultCellTypeFormulaSpecialCachedValue. getValueTypeEnum()Returns the type of the cached value -
Uses of CellType in org.apache.poi.hssf.usermodel
Methods in org.apache.poi.hssf.usermodel that return CellType Modifier and Type Method Description CellTypeHSSFCell. getCachedFormulaResultType()Only valid for formula cellsCellTypeHSSFCell. getCellType()get the cells type (numeric, formula or string)Methods in org.apache.poi.hssf.usermodel with parameters of type CellType Modifier and Type Method Description HSSFCellHSSFRow. createCell(int columnIndex, CellType type)Use this to create new cells within the row and return it.protected voidHSSFCell. setCellTypeImpl(CellType cellType)Constructors in org.apache.poi.hssf.usermodel with parameters of type CellType Constructor Description 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 Modifier and Type Method Description static CellTypeCellFormat. ultimateType(Cell cell)Returns the ultimate cell type, following the results of formulas. -
Uses of CellType in org.apache.poi.ss.formula
Methods in org.apache.poi.ss.formula that return CellType Modifier and Type Method Description CellTypeBaseFormulaEvaluator. evaluateFormulaCell(Cell cell)If cell contains formula, it evaluates the formula, and saves the result of the formula.CellTypeEvaluationCell. getCachedFormulaResultType()CellTypeEvaluationCell. getCellType()Methods in org.apache.poi.ss.formula with parameters of type CellType Modifier and Type Method Description static booleanDataValidationEvaluator. isType(Cell cell, CellType type)Note that this assumes the cell cached value is up to date and in sync with data editsprotected voidBaseFormulaEvaluator. setCellType(Cell cell, CellType cellType)Override if a different variation is needed, e.g. passing the evaluator to the cell method -
Uses of CellType in org.apache.poi.ss.usermodel
Methods in org.apache.poi.ss.usermodel that return CellType Modifier and Type Method Description CellTypeFormulaEvaluator. evaluateFormulaCell(Cell cell)If cell contains formula, it evaluates the formula, and saves the result of the formula.static CellTypeCellType. forInt(int code)Deprecated.POI 3.15 beta 3.CellTypeCell. getCachedFormulaResultType()Only valid for formula cellsCellTypeCell. getCellType()Return the cell type.CellTypeCellValue. getCellType()Return the cell type.protected CellTypeCellBase. getValueType()Get value type of this cell.static CellTypeCellType. 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 Modifier and Type Method Description CellRow. createCell(int column, CellType type)Use this to create new cells within the row and return it.voidCell. setCellType(CellType cellType)Deprecated.This method is deprecated and will be removed in POI 5.0.voidCellBase. setCellType(CellType cellType)Set the cells type (blank, numeric, boolean, error or string).protected abstract voidCellBase. setCellTypeImpl(CellType cellType)Implementation-specific logic
-