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

Packages that use HSSFRow
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.usermodel
 

Methods in org.apache.poi.hssf.usermodel with parameters of type HSSFRow
 void HSSFFormulaEvaluator.setCurrentRow(HSSFRow row)
          Deprecated. (Aug 2008) - not needed, since the current row can be derived from the cell
 

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)
          Get a row from the spreadsheet, and create it if it doesn't exist.
 

Methods in org.apache.poi.hssf.util with parameters of type HSSFRow
static HSSFCell HSSFCellUtil.createCell(HSSFRow row, int column, java.lang.String value)
          Create a cell, and give it a value.
static HSSFCell HSSFCellUtil.createCell(HSSFRow row, int column, java.lang.String value, HSSFCellStyle style)
          Creates a cell, gives it a value, and applies a style if provided
static HSSFCell HSSFCellUtil.getCell(HSSFRow row, int columnIndex)
          Get a specific cell from a row.