Uses of Class
org.apache.poi.ss.usermodel.Row.MissingCellPolicy
-
Packages that use Row.MissingCellPolicy Package Description org.apache.poi.hssf.usermodel The usermodel package maps HSSF low level structures to familiar workbook/sheet modelorg.apache.poi.ss.usermodel -
-
Uses of Row.MissingCellPolicy in org.apache.poi.hssf.usermodel
Methods in org.apache.poi.hssf.usermodel that return Row.MissingCellPolicy Modifier and Type Method Description Row.MissingCellPolicy
HSSFWorkbook. getMissingCellPolicy()
Retrieves the current policy on what to do when getting missing or blank cells from a row.Methods in org.apache.poi.hssf.usermodel with parameters of type Row.MissingCellPolicy Modifier and Type Method Description HSSFCell
HSSFRow. getCell(int cellnum, Row.MissingCellPolicy policy)
Get the hssfcell representing a given column (logical cell) 0-based.void
HSSFWorkbook. setMissingCellPolicy(Row.MissingCellPolicy missingCellPolicy)
Sets the policy on what to do when getting missing or blank cells from a row. -
Uses of Row.MissingCellPolicy in org.apache.poi.ss.usermodel
Methods in org.apache.poi.ss.usermodel that return Row.MissingCellPolicy Modifier and Type Method Description Row.MissingCellPolicy
Workbook. getMissingCellPolicy()
Retrieves the current policy on what to do when getting missing or blank cells from a row.static Row.MissingCellPolicy
Row.MissingCellPolicy. valueOf(String name)
Returns the enum constant of this type with the specified name.static Row.MissingCellPolicy[]
Row.MissingCellPolicy. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.poi.ss.usermodel with parameters of type Row.MissingCellPolicy Modifier and Type Method Description Cell
Row. getCell(int cellnum, Row.MissingCellPolicy policy)
Returns the cell at the given (0 based) index, with the specifiedRow.MissingCellPolicy
void
Workbook. setMissingCellPolicy(Row.MissingCellPolicy missingCellPolicy)
Sets the policy on what to do when getting missing or blank cells from a row.
-