Uses of Class
org.apache.poi.hssf.usermodel.HSSFRow.MissingCellPolicy

Packages that use HSSFRow.MissingCellPolicy
org.apache.poi.hssf.usermodel usermodel package maps HSSF low level strutures to familiar workbook/sheet model 
 

Uses of HSSFRow.MissingCellPolicy in org.apache.poi.hssf.usermodel
 

Fields in org.apache.poi.hssf.usermodel declared as HSSFRow.MissingCellPolicy
static HSSFRow.MissingCellPolicy HSSFRow.CREATE_NULL_AS_BLANK
          A new, blank cell is created for missing cells.
static HSSFRow.MissingCellPolicy HSSFRow.RETURN_BLANK_AS_NULL
          Missing cells are returned as null, as are blank cells
static HSSFRow.MissingCellPolicy HSSFRow.RETURN_NULL_AND_BLANK
          Missing cells are returned as null, Blank cells are returned as normal
 

Methods in org.apache.poi.hssf.usermodel that return HSSFRow.MissingCellPolicy
 HSSFRow.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 HSSFRow.MissingCellPolicy
 HSSFCell HSSFRow.getCell(int cellnum, HSSFRow.MissingCellPolicy policy)
          Get the hssfcell representing a given column (logical cell) 0-based.
 void HSSFWorkbook.setMissingCellPolicy(HSSFRow.MissingCellPolicy missingCellPolicy)
          Sets the policy on what to do when getting missing or blank cells from a row.
 



Copyright 2008 The Apache Software Foundation or its licensors, as applicable.