|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Row | |
---|---|
org.apache.poi.hssf.usermodel | usermodel package maps HSSF low level strutures to familiar workbook/sheet model |
org.apache.poi.hssf.usermodel.helpers | |
org.apache.poi.ss.usermodel | |
org.apache.poi.ss.usermodel.helpers | |
org.apache.poi.ss.util | |
org.apache.poi.xssf.streaming | |
org.apache.poi.xssf.usermodel | |
org.apache.poi.xssf.usermodel.helpers |
Uses of Row in org.apache.poi.hssf.usermodel |
---|
Classes in org.apache.poi.hssf.usermodel that implement Row | |
---|---|
class |
HSSFRow
High level representation of a row of a spreadsheet. |
Methods in org.apache.poi.hssf.usermodel that return types with arguments of type Row | |
---|---|
java.util.Iterator<Row> |
HSSFSheet.iterator()
Alias for HSSFSheet.rowIterator() to allow
foreach loops |
java.util.Iterator<Row> |
HSSFSheet.rowIterator()
|
Methods in org.apache.poi.hssf.usermodel with parameters of type Row | |
---|---|
void |
HSSFSheet.removeRow(Row row)
Remove a row from this sheet. |
Uses of Row in org.apache.poi.hssf.usermodel.helpers |
---|
Methods in org.apache.poi.hssf.usermodel.helpers with parameters of type Row | |
---|---|
void |
HSSFRowShifter.updateRowFormulas(Row row,
FormulaShifter shifter)
|
Uses of Row in org.apache.poi.ss.usermodel |
---|
Methods in org.apache.poi.ss.usermodel that return Row | |
---|---|
Row |
Sheet.createRow(int rownum)
Create a new row within the sheet and return the high level representation |
Row |
Cell.getRow()
Returns the Row this cell belongs to |
Row |
Sheet.getRow(int rownum)
Returns the logical row (not physical) 0-based. |
Methods in org.apache.poi.ss.usermodel that return types with arguments of type Row | |
---|---|
java.util.Iterator<Row> |
Sheet.rowIterator()
Returns an iterator of the physical rows |
Methods in org.apache.poi.ss.usermodel with parameters of type Row | |
---|---|
void |
Sheet.removeRow(Row row)
Remove a row from this sheet. |
Uses of Row in org.apache.poi.ss.usermodel.helpers |
---|
Methods in org.apache.poi.ss.usermodel.helpers with parameters of type Row | |
---|---|
abstract void |
RowShifter.updateRowFormulas(Row row,
FormulaShifter shifter)
Update the formulas in specified row using the formula shifting policy specified by shifter |
Uses of Row in org.apache.poi.ss.util |
---|
Methods in org.apache.poi.ss.util that return Row | |
---|---|
static Row |
CellUtil.getRow(int rowIndex,
Sheet sheet)
Get a row from the spreadsheet, and create it if it doesn't exist. |
Methods in org.apache.poi.ss.util with parameters of type Row | |
---|---|
static Cell |
CellUtil.createCell(Row row,
int column,
java.lang.String value)
Create a cell, and give it a value. |
static Cell |
CellUtil.createCell(Row row,
int column,
java.lang.String value,
CellStyle style)
Creates a cell, gives it a value, and applies a style if provided |
static Cell |
CellUtil.getCell(Row row,
int columnIndex)
Get a specific cell from a row. |
Uses of Row in org.apache.poi.xssf.streaming |
---|
Classes in org.apache.poi.xssf.streaming that implement Row | |
---|---|
class |
SXSSFRow
Streaming version of XSSFRow implementing the "BigGridDemo" strategy. |
Methods in org.apache.poi.xssf.streaming that return Row | |
---|---|
Row |
SXSSFCell.getRow()
Returns the Row this cell belongs to |
Methods in org.apache.poi.xssf.streaming that return types with arguments of type Row | |
---|---|
java.util.Iterator<Row> |
SXSSFSheet.iterator()
|
java.util.Iterator<Row> |
SXSSFSheet.rowIterator()
Returns an iterator of the physical rows |
Methods in org.apache.poi.xssf.streaming with parameters of type Row | |
---|---|
void |
SXSSFSheet.removeRow(Row row)
Remove a row from this sheet. |
Uses of Row in org.apache.poi.xssf.usermodel |
---|
Classes in org.apache.poi.xssf.usermodel that implement Row | |
---|---|
class |
XSSFRow
High level representation of a row of a spreadsheet. |
Methods in org.apache.poi.xssf.usermodel that return types with arguments of type Row | |
---|---|
java.util.Iterator<Row> |
XSSFSheet.iterator()
Alias for XSSFSheet.rowIterator() to
allow foreach loops |
java.util.Iterator<Row> |
XSSFSheet.rowIterator()
|
Methods in org.apache.poi.xssf.usermodel with parameters of type Row | |
---|---|
void |
XSSFRow.copyRowFrom(Row srcRow,
CellCopyPolicy policy)
Copy the cells from srcRow to this row If this row is not a blank row, this will merge the two rows, overwriting the cells in this row with the cells in srcRow If srcRow is null, overwrite cells in destination row with blank values, styles, etc per cell copy policy srcRow may be from a different sheet in the same workbook |
void |
XSSFSheet.removeRow(Row row)
Remove a row from this sheet. |
Method parameters in org.apache.poi.xssf.usermodel with type arguments of type Row | |
---|---|
void |
XSSFSheet.copyRows(java.util.List<? extends Row> srcRows,
int destStartRow,
CellCopyPolicy policy)
copyRows rows from srcRows to this sheet starting at destStartRow Additionally copies merged regions that are completely defined in these rows (ie. |
Uses of Row in org.apache.poi.xssf.usermodel.helpers |
---|
Methods in org.apache.poi.xssf.usermodel.helpers with parameters of type Row | |
---|---|
void |
XSSFRowShifter.updateRowFormulas(Row row,
FormulaShifter shifter)
Update the formulas in specified row using the formula shifting policy specified by shifter |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |