Java org.apache.poi.ss.usermodel Row fields, constructors, methods, implement or subclass

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

Introduction

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

The text is from its open source code.

Implementation

org.apache.poi.ss.usermodel.Row has the following implementations.
Click this link to see all its implementation.

Method

IteratorcellIterator()
CellcreateCell(int column)
Use this to create new cells within the row and return it.
CellcreateCell(int column, CellType type)
Use this to create new cells within the row and return it.
CellgetCell(int cellnum)
Get the cell representing a given column (logical cell) 0-based.
CellgetCell(int cellnum, MissingCellPolicy policy)
Returns the cell at the given (0 based) index, with the specified org.apache.poi.ss.usermodel.Row.MissingCellPolicy
shortgetFirstCellNum()
Get the number of the first cell contained in this row.
shortgetHeight()
Get the row's height measured in twips (1/20th of a point).
floatgetHeightInPoints()
Returns row height measured in point size.
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
CellStylegetRowStyle()
Returns the whole-row cell styles.
SheetgetSheet()
Returns the Sheet this row belongs to
booleangetZeroHeight()
Get whether or not to display this row with 0 height
booleanisFormatted()
Is this row formatted?
voidremoveCell(Cell cell)
Remove the Cell from this row.
voidsetHeight(short height)
Set the row's height or set to ff (-1) for undefined/default-height.
voidsetHeightInPoints(float height)
Set the row's height in points.
voidsetRowStyle(CellStyle style)
Applies a whole-row cell styling to the row.
voidsetZeroHeight(boolean zHeight)
Set whether or not to display this row with 0 height