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.usermodel.contrib   
 

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

Fields in org.apache.poi.hssf.usermodel declared as HSSFRow
protected  HSSFRow HSSFFormulaEvaluator.row
           
 

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 HSSFSheet.getRow(int rownum)
          Returns the logical row (not physical) 0-based.
 

Methods in org.apache.poi.hssf.usermodel with parameters of type HSSFRow
protected static ValueEval HSSFFormulaEvaluator.getEvalForCell(HSSFCell cell, HSSFRow row, HSSFSheet sheet, HSSFWorkbook workbook)
          Given a cell, find its type and from that create an appropriate ValueEval impl instance and return that.
protected static ValueEval HSSFFormulaEvaluator.internalEvaluate(HSSFCell srcCell, HSSFRow srcRow, HSSFSheet sheet, HSSFWorkbook workbook)
          Dev.
protected static void HSSFFormulaEvaluator.pushRef2DEval(ReferencePtg ptg, java.util.Stack stack, HSSFCell cell, HSSFRow row, HSSFSheet sheet, HSSFWorkbook workbook)
          create a Ref2DEval for ReferencePtg and push it on the stack.
protected static void HSSFFormulaEvaluator.pushRef3DEval(Ref3DPtg ptg, java.util.Stack stack, HSSFCell cell, HSSFRow row, HSSFSheet sheet, HSSFWorkbook workbook)
          create a Ref3DEval for Ref3DPtg and push it on the stack.
 void HSSFSheet.removeRow(HSSFRow row)
          Remove a row from this sheet.
 void HSSFFormulaEvaluator.setCurrentRow(HSSFRow row)
           
 

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

Methods in org.apache.poi.hssf.usermodel.contrib that return HSSFRow
static HSSFRow HSSFCellUtil.getRow(int rowCounter, HSSFSheet sheet)
          Get a row from the spreadsheet, and create it if it doesn't exist.
 

Methods in org.apache.poi.hssf.usermodel.contrib 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 column)
          Get a specific cell from a row.
 



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