Java org.apache.poi.xssf.usermodel XSSFRow fields, constructors, methods, implement or subclass

Example usage for Java org.apache.poi.xssf.usermodel XSSFRow fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.poi.xssf.usermodel XSSFRow.

The text is from its open source code.

Method

IteratorcellIterator()
Cell iterator over the physically defined cells:
 for (Iterator it = row.cellIterator(); it.hasNext(); ) { Cell cell = it.next(); ... 
XSSFCellcreateCell(int columnIndex)
Use this to create new cells within the row and return it.
XSSFCellcreateCell(int columnIndex, CellType type)
Use this to create new cells within the row and return it.
XSSFCellgetCell(int cellnum)
Returns the cell at the given (0 based) index, with the org.apache.poi.ss.usermodel.Row.MissingCellPolicy from the parent Workbook.
XSSFCellgetCell(int cellnum, MissingCellPolicy policy)
Returns the cell at the given (0 based) index, with the specified org.apache.poi.ss.usermodel.Row.MissingCellPolicy
CTRowgetCTRow()
Returns the underlying CTRow xml bean containing all cell definitions in this row
shortgetFirstCellNum()
Get the 0-based number of the first cell contained in this row.
shortgetHeight()
Get the row's height measured in twips (1/20th of a point).
shortgetLastCellNum()
Gets the index of the last cell contained in this row PLUS ONE.
intgetPhysicalNumberOfCells()
Gets the number of defined cells (NOT number of cells in the actual row!).
intgetRowNum()
Get row number this row represents
XSSFSheetgetSheet()
Returns the XSSFSheet this row belongs to
voidremoveCell(Cell cell)
Remove the Cell from this row.
voidsetHeight(short height)
Set the height in "twips" or 1/20th of a point.
voidsetHeightInPoints(float height)
Set the row's height in points.
voidsetRowStyle(CellStyle style)
Applies a whole-row cell styling to the row.