|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
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 |
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 | |
void |
HSSFSheet.removeRow(HSSFRow row)
Remove a row from this sheet. |
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.getCell(HSSFRow row,
int column)
Get a specific cell from a row. |
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.createCell(HSSFRow row,
int column,
java.lang.String value)
Create a cell, and give it a value. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |