Uses of Class
org.apache.poi.hssf.usermodel.HSSFCell

Packages that use HSSFCell
org.apache.poi.hssf.converter   
org.apache.poi.hssf.usermodel usermodel package maps HSSF low level strutures to familiar workbook/sheet model 
org.apache.poi.hssf.util util package contains tools needed for writing HSSF files that are not necesarily "real" HSSF concepts. 
 

Uses of HSSFCell in org.apache.poi.hssf.converter
 

Methods in org.apache.poi.hssf.converter with parameters of type HSSFCell
protected  boolean AbstractExcelConverter.isTextEmpty(HSSFCell cell)
           
protected  boolean ExcelToHtmlConverter.processCell(HSSFCell cell, org.w3c.dom.Element tableCellElement, int normalWidthPx, int maxSpannedWidthPx, float normalHeightPt)
           
protected  boolean ExcelToFoConverter.processCell(HSSFWorkbook workbook, HSSFCell cell, org.w3c.dom.Element tableCellElement, int normalWidthPx, int maxSpannedWidthPx, float normalHeightPt)
           
 

Uses of HSSFCell in org.apache.poi.hssf.usermodel
 

Methods in org.apache.poi.hssf.usermodel that return HSSFCell
 HSSFCell HSSFRow.createCell(int column)
          Use this to create new cells within the row and return it.
 HSSFCell HSSFRow.createCell(int columnIndex, CellType type)
          Use this to create new cells within the row and return it.
 HSSFCell HSSFRow.createCell(int columnIndex, int type)
          Deprecated. POI 3.15 beta 3
 HSSFCell HSSFFormulaEvaluator.evaluateInCell(Cell cell)
           
 HSSFCell HSSFRow.getCell(int cellnum)
          Get the hssfcell representing a given column (logical cell) 0-based.
 HSSFCell HSSFRow.getCell(int cellnum, Row.MissingCellPolicy policy)
          Get the hssfcell representing a given column (logical cell) 0-based.
 

Methods in org.apache.poi.hssf.usermodel that return types with arguments of type HSSFCell
 CellRange<HSSFCell> HSSFSheet.removeArrayFormula(Cell cell)
           
 CellRange<HSSFCell> HSSFSheet.setArrayFormula(java.lang.String formula, CellRangeAddress range)
           
 

Methods in org.apache.poi.hssf.usermodel with parameters of type HSSFCell
 void HSSFRow.moveCell(HSSFCell cell, short newColumn)
          Moves the supplied cell to a new column, which must not already have a cell there!
 void HSSFFormulaEvaluator.notifyDeleteCell(HSSFCell cell)
          Should be called to tell the cell value cache that the specified cell has just been deleted.
 void HSSFFormulaEvaluator.notifyUpdateCell(HSSFCell cell)
          Should be called to tell the cell value cache that the specified (value or formula) cell has changed.
 

Uses of HSSFCell in org.apache.poi.hssf.util
 

Methods in org.apache.poi.hssf.util that return HSSFCell
static HSSFCell HSSFCellUtil.createCell(HSSFRow row, int column, java.lang.String value)
          Deprecated. 3.15 beta2. Removed in 3.17. Use CellUtil.createCell(org.apache.poi.ss.usermodel.Row, int, java.lang.String, org.apache.poi.ss.usermodel.CellStyle) instead.
static HSSFCell HSSFCellUtil.createCell(HSSFRow row, int column, java.lang.String value, HSSFCellStyle style)
          Deprecated. 3.15 beta2. Removed in 3.17. Use CellUtil.createCell(org.apache.poi.ss.usermodel.Row, int, java.lang.String, org.apache.poi.ss.usermodel.CellStyle) instead.
static HSSFCell HSSFCellUtil.getCell(HSSFRow row, int columnIndex)
          Deprecated. 3.15 beta2. Removed in 3.17. Use CellUtil.getCell(org.apache.poi.ss.usermodel.Row, int) instead.
static HSSFCell HSSFCellUtil.translateUnicodeValues(HSSFCell cell)
          Deprecated. 3.15 beta2. Removed in 3.17. Use CellUtil.translateUnicodeValues(org.apache.poi.ss.usermodel.Cell) instead.
 

Methods in org.apache.poi.hssf.util with parameters of type HSSFCell
static void HSSFCellUtil.setAlignment(HSSFCell cell, HorizontalAlignment align)
          Deprecated. 3.15 beta2. Removed in 3.17. Use CellUtil.setAlignment(org.apache.poi.ss.usermodel.Cell, org.apache.poi.ss.usermodel.Workbook, short) instead.
static void HSSFCellUtil.setAlignment(HSSFCell cell, HSSFWorkbook workbook, short align)
          Deprecated. 3.15 beta2. Removed in 3.17. Use CellUtil.setAlignment(org.apache.poi.ss.usermodel.Cell, org.apache.poi.ss.usermodel.Workbook, short) instead.
static void HSSFCellUtil.setCellStyleProperty(HSSFCell cell, HSSFWorkbook workbook, java.lang.String propertyName, java.lang.Object propertyValue)
          Deprecated. 3.15 beta2. Removed in 3.17. Use CellUtil.setCellStyleProperty(org.apache.poi.ss.usermodel.Cell, org.apache.poi.ss.usermodel.Workbook, java.lang.String, java.lang.Object) instead.
static void HSSFCellUtil.setFont(HSSFCell cell, HSSFWorkbook workbook, HSSFFont font)
          Deprecated. 3.15 beta2. Removed in 3.17. Use CellUtil.setFont(org.apache.poi.ss.usermodel.Cell, org.apache.poi.ss.usermodel.Workbook, org.apache.poi.ss.usermodel.Font) instead.
static HSSFCell HSSFCellUtil.translateUnicodeValues(HSSFCell cell)
          Deprecated. 3.15 beta2. Removed in 3.17. Use CellUtil.translateUnicodeValues(org.apache.poi.ss.usermodel.Cell) instead.
 



Copyright 2017 The Apache Software Foundation or its licensors, as applicable.