Module jp.ecuacion.util.poi
Interface IfDataTypeStringExcelTableReader
- All Superinterfaces:
IfDataTypeStringExcelTable,IfExcelTable<String>,IfExcelTableReader<String>
- All Known Implementing Classes:
StringFreeExcelTableReader,StringOneLineHeaderExcelTableReader,StringOneLineHeaderExcelTableToBeanReader
public interface IfDataTypeStringExcelTableReader
extends IfDataTypeStringExcelTable, IfExcelTableReader<String>
Provides the excel table reader interface
with object type obtained from the excel data is
String.-
Method Summary
Modifier and TypeMethodDescriptiondefault StringgetCellData(org.apache.poi.ss.usermodel.Cell cell) Returns the obtained value from the cell.Gets NoDataString.default booleanisCellDataEmpty(String cellData) Returns whether the value of the cell is empty.Methods inherited from interface jp.ecuacion.util.poi.excel.table.IfDataTypeStringExcelTable
getStringValueMethods inherited from interface jp.ecuacion.util.poi.excel.table.IfExcelTable
getFarLeftHeaderLabel, getSheetName, validateHeaderMethods inherited from interface jp.ecuacion.util.poi.excel.table.reader.IfExcelTableReader
getExcelReadUtil, updateAndGetHeaderList
-
Method Details
-
getCellData
Description copied from interface:IfExcelTableReaderReturns the obtained value from the cell.If you want to get
Stringvalue from the cell, it returns theStringvalue.- Specified by:
getCellDatain interfaceIfExcelTableReader<String>- Parameters:
cell- cell, may be null.- Returns:
- the obtained value from the cell
-
isCellDataEmpty
Description copied from interface:IfExcelTableReaderReturns whether the value of the cell is empty.- Specified by:
isCellDataEmptyin interfaceIfExcelTableReader<String>- Parameters:
cellData- cellData- Returns:
- whether the valule of the cell is empty.
-
getNoDataString
NoDataString getNoDataString()Gets NoDataString.- Returns:
- NoDataString
-