Uses of Interface
org.apache.poi.ss.usermodel.Row
-
Packages that use Row Package Description io.keikai.range.impl.imexp Keikai Spreadsheet Internal Range API Implementation classes.org.apache.poi.hssf.usermodel The usermodel package maps HSSF low level structures to familiar workbook/sheet modelorg.apache.poi.ss.usermodel org.apache.poi.ss.util -
-
Uses of Row in io.keikai.range.impl.imexp
Methods in io.keikai.range.impl.imexp with parameters of type Row Modifier and Type Method Description protected void
AbstractExcelExporter. exportCell(Row poiRow, SCell cell)
static int
ImExpUtils. getRowHeightInPx(Sheet poiSheet, Row row)
protected SRow
AbstractExcelImporter. importRow(Row poiRow, SSheet sheet)
-
Uses of Row in org.apache.poi.hssf.usermodel
Classes in org.apache.poi.hssf.usermodel that implement Row Modifier and Type Class Description 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 Modifier and Type Method Description Iterator<Row>
HSSFSheet. rowIterator()
Spliterator<Row>
HSSFSheet. spliterator()
Methods in org.apache.poi.hssf.usermodel with parameters of type Row Modifier and Type Method Description void
HSSFRow. 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 workbookvoid
HSSFRow. copyRowFrom(Row srcRow, CellCopyPolicy policy, CellCopyContext context)
Copy the cells from srcRow to this row.void
HSSFSheet. removeRow(Row row)
Remove a row from this sheet. -
Uses of Row in org.apache.poi.ss.usermodel
Methods in org.apache.poi.ss.usermodel that return Row Modifier and Type Method Description Row
Sheet. createRow(int rownum)
Create a new row within the sheet and return the high level representationRow
Cell. getRow()
Returns the Row this cell belongs toRow
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 Modifier and Type Method Description default Iterator<Row>
Sheet. iterator()
Alias forSheet.rowIterator()
to allow foreach loopsIterator<Row>
Sheet. rowIterator()
Returns an iterator of the physical rowsdefault Spliterator<Row>
Sheet. spliterator()
Returns a spliterator of the physical rowsMethods in org.apache.poi.ss.usermodel with parameters of type Row Modifier and Type Method Description void
Sheet. removeRow(Row row)
Remove a row from this sheet. -
Uses of Row in org.apache.poi.ss.util
Methods in org.apache.poi.ss.util that return Row Modifier and Type Method Description 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 Modifier and Type Method Description static Cell
CellUtil. createCell(Row row, int column, String value)
Create a cell, and give it a value.static Cell
CellUtil. createCell(Row row, int column, String value, CellStyle style)
Creates a cell, gives it a value, and applies a style if providedstatic Cell
CellUtil. getCell(Row row, int columnIndex)
Get a specific cell from a row.
-