Uses of Class
org.apache.poi.ss.usermodel.CellType
-
Packages that use CellType Package Description org.apache.poi.hssf.usermodel usermodel package maps HSSF low level strutures 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 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 Modifier and Type Method Description CellTypeHSSFCell. getCachedFormulaResultType()Only valid for formula cellsCellTypeHSSFCell. getCachedFormulaResultTypeEnum()Deprecated.usegetCachedFormulaResultTypeWill be deleted when we make the CellType enum transition.CellTypeHSSFCell. getCellType()get the cells type (numeric, formula or string)CellTypeHSSFCell. getCellTypeEnum()Deprecated.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.voidHSSFCell. setCellType(CellType cellType)Set the cells type (numeric, formula or string).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.static CellTypeCellFormat. ultimateTypeEnum(Cell cell)Deprecated.useultimateTypeinstead -
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.CellTypeBaseFormulaEvaluator. evaluateFormulaCellEnum(Cell cell)Deprecated.useevaluateFormulaCell(cell)insteadCellTypeEvaluationCell. getCachedFormulaResultType()CellTypeEvaluationCell. getCachedFormulaResultTypeEnum()Deprecated.POI 3.15 beta 3.CellTypeEvaluationCell. getCellType()CellTypeEvaluationCell. getCellTypeEnum()Deprecated.POI 3.15 beta 3.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. -
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.CellTypeFormulaEvaluator. evaluateFormulaCellEnum(Cell cell)Deprecated.useevaluateFormulaCell(cell)static CellTypeCellType. forInt(int code)Deprecated.POI 3.15 beta 3.CellTypeCell. getCachedFormulaResultType()Only valid for formula cells Will returnCellTypein a future version of POI.CellTypeCell. getCachedFormulaResultTypeEnum()Deprecated.CellTypeCell. getCellType()Return the cell type.CellTypeCellValue. getCellType()Return the cell type.CellTypeCell. getCellTypeEnum()Deprecated.CellTypeCellValue. getCellTypeEnum()Deprecated.usegetCellTypeinsteadstatic 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)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 Modifier and Type Method Description CellTypeSXSSFCell. getCachedFormulaResultType()Only valid for formula cellsCellTypeSXSSFCell. getCachedFormulaResultTypeEnum()Deprecated.usegetCachedFormulaResultTypeinsteadCellTypeSXSSFCell. getCellType()Return the cell type.CellTypeSXSSFCell. getCellTypeEnum()Deprecated.usegetCellTypeinsteadMethods in org.apache.poi.xssf.streaming with parameters of type CellType Modifier and Type Method Description SXSSFCellSXSSFRow. createCell(int column, CellType type)Use this to create new cells within the row and return it.voidSXSSFCell. setCellType(CellType cellType)Set the cells type (numeric, formula or string)Constructors in org.apache.poi.xssf.streaming with parameters of type CellType Constructor Description SXSSFCell(SXSSFRow row, CellType cellType) -
Uses of CellType in org.apache.poi.xssf.usermodel
Methods in org.apache.poi.xssf.usermodel that return CellType Modifier and Type Method Description CellTypeXSSFCell. getCachedFormulaResultType()Only valid for formula cellsCellTypeXSSFCell. getCachedFormulaResultTypeEnum()Deprecated.usegetCachedFormulaResultTypeinstead Will be deleted when we make the CellType enum transition.CellTypeXSSFCell. getCellType()Return the cell type.CellTypeXSSFCell. getCellTypeEnum()Deprecated.usegetCellTypeinsteadMethods in org.apache.poi.xssf.usermodel with parameters of type CellType Modifier and Type Method Description XSSFCellXSSFRow. createCell(int columnIndex, CellType type)Use this to create new cells within the row and return it.protected voidBaseXSSFFormulaEvaluator. setCellType(Cell cell, CellType cellType)voidXSSFCell. setCellType(CellType cellType)Set the cells type (numeric, formula or string)protected voidXSSFCell. setCellType(CellType cellType, BaseXSSFEvaluationWorkbook evalWb)Needed by bug #62834, which points out getCellFormula() expects an evaluation context or creates a new one, so if there is one in use, it needs to be carried on through.
-