Uses of Class
org.apache.poi.ss.usermodel.Row.MissingCellPolicy

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

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

Methods in org.apache.poi.hssf.usermodel that return Row.MissingCellPolicy
 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
 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
 

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

Methods in org.apache.poi.ss.usermodel that return Row.MissingCellPolicy
 Row.MissingCellPolicy Workbook.getMissingCellPolicy()
          Retrieves the current policy on what to do when getting missing or blank cells from a row.
 

Methods in org.apache.poi.ss.usermodel with parameters of type Row.MissingCellPolicy
 Cell Row.getCell(int cellnum, Row.MissingCellPolicy policy)
          Returns the cell at the given (0 based) index, with the specified Row.MissingCellPolicy
 void Workbook.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.xssf.streaming
 

Methods in org.apache.poi.xssf.streaming that return Row.MissingCellPolicy
 Row.MissingCellPolicy SXSSFWorkbook.getMissingCellPolicy()
          Retrieves the current policy on what to do when getting missing or blank cells from a row.
 

Methods in org.apache.poi.xssf.streaming with parameters of type Row.MissingCellPolicy
 Cell SXSSFRow.getCell(int cellnum, Row.MissingCellPolicy policy)
          Returns the cell at the given (0 based) index, with the specified Row.MissingCellPolicy
 void SXSSFWorkbook.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.xssf.usermodel
 

Methods in org.apache.poi.xssf.usermodel that return Row.MissingCellPolicy
 Row.MissingCellPolicy XSSFWorkbook.getMissingCellPolicy()
          Retrieves the current policy on what to do when getting missing or blank cells from a row.
 

Methods in org.apache.poi.xssf.usermodel with parameters of type Row.MissingCellPolicy
 XSSFCell XSSFRow.getCell(int cellnum, Row.MissingCellPolicy policy)
          Returns the cell at the given (0 based) index, with the specified Row.MissingCellPolicy
 void XSSFWorkbook.setMissingCellPolicy(Row.MissingCellPolicy missingCellPolicy)
          Sets the policy on what to do when getting missing or blank cells from a row.
 



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