Package com.avoka.core.util
Class HSSFUtils
- java.lang.Object
-
- com.avoka.core.util.HSSFUtils
-
public class HSSFUtils extends Object
Provides HSSF Excel utilities.
-
-
Constructor Summary
Constructors Constructor Description HSSFUtils()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static String
getCellValue(org.apache.poi.hssf.usermodel.HSSFRow row, int index)
Return the cell value.static boolean
isEmptyCell(org.apache.poi.hssf.usermodel.HSSFRow row, int index)
Return true if the cell is empty.
-
-
-
Method Detail
-
isEmptyCell
public static boolean isEmptyCell(org.apache.poi.hssf.usermodel.HSSFRow row, int index)
Return true if the cell is empty.- Parameters:
row
- the specified rowindex
- the index in the row- Returns:
- true if the cell is empty
-
getCellValue
public static String getCellValue(org.apache.poi.hssf.usermodel.HSSFRow row, int index)
Return the cell value.- Parameters:
row
- the specified rowindex
- the index in the row- Returns:
- the cell value
-
-