Package org.pentaho.di.core.spreadsheet
Interface KCell
-
public interface KCell
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getContents()
int
getRow()
KCellType
getType()
Object
getValue()
-
-
-
Method Detail
-
getType
KCellType getType()
-
getValue
Object getValue()
- Returns:
- java.util.Date for KCellType.DATE
Boolean for KCellType.BOOLEAN
Double for KCellType.NUMBER
String for KCellType.LABEL
null for KCellType.EMPTY
-
getContents
String getContents()
- Returns:
- The content description of the cell
-
getRow
int getRow()
- Returns:
- The row number in the sheet.
-
-