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

Packages that use HSSFRow
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 HSSFRow in org.apache.poi.hssf.converter
 

Methods in org.apache.poi.hssf.converter with parameters of type HSSFRow
protected  java.lang.String AbstractExcelConverter.getRowName(HSSFRow row)
          Generates name for output as row number in case AbstractExcelConverter.isOutputRowNumbers() == true
protected  int ExcelToHtmlConverter.processRow(CellRangeAddress[][] mergedRanges, HSSFRow row, org.w3c.dom.Element tableRowElement)
           
protected  int ExcelToFoConverter.processRow(HSSFWorkbook workbook, CellRangeAddress[][] mergedRanges, HSSFRow row, org.w3c.dom.Element tableRowElement)
           
protected  org.w3c.dom.Element ExcelToFoConverter.processRowNumber(HSSFRow row)
           
protected  void ExcelToHtmlConverter.processRowNumber(HSSFRow row, org.w3c.dom.Element tableRowNumberCellElement)
           
 

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

Methods in org.apache.poi.hssf.usermodel that return HSSFRow
 HSSFRow HSSFSheet.createRow(int rownum)
          Create a new row within the sheet and return the high level representation
 HSSFRow HSSFCell.getRow()
          Returns the HSSFRow this cell belongs to
 HSSFRow HSSFSheet.getRow(int rowIndex)
          Returns the logical row (not physical) 0-based.
 

Methods in org.apache.poi.hssf.usermodel with parameters of type HSSFRow
 int HSSFRow.compareTo(HSSFRow other)
          Compares two HSSFRow objects.
 

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

Methods in org.apache.poi.hssf.util that return HSSFRow
static HSSFRow HSSFCellUtil.getRow(int rowIndex, HSSFSheet sheet)
          Deprecated. 3.15 beta2. Removed in 3.17. Use CellUtil.getRow(int, org.apache.poi.ss.usermodel.Sheet) instead.
 

Methods in org.apache.poi.hssf.util with parameters of type HSSFRow
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.
 



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