|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.poi.hssf.usermodel.HSSFCell
public class HSSFCell
High level representation of a cell in a row of a spreadsheet. Cells can be numeric, formula-based or string-based (text). The cell type specifies this. String cells cannot contain numbers and numeric cells cannot contain strings (at least according to our model). Client apps should do the conversions themselves. Formula cells have the formula string, as well as the formula result, which can be numeric or string.
Cells should have their number (0 based) before being added to a row. Only cells that have values should be added.
Field Summary | |
---|---|
static short |
ENCODING_COMPRESSED_UNICODE
|
static short |
ENCODING_UNCHANGED
|
static short |
ENCODING_UTF_16
|
static int |
LAST_COLUMN_NUMBER
The maximum number of columns in BIFF8 |
Fields inherited from interface org.apache.poi.ss.usermodel.Cell |
---|
CELL_TYPE_BLANK, CELL_TYPE_BOOLEAN, CELL_TYPE_ERROR, CELL_TYPE_FORMULA, CELL_TYPE_NUMERIC, CELL_TYPE_STRING |
Constructor Summary | |
---|---|
protected |
HSSFCell(HSSFWorkbook book,
HSSFSheet sheet,
CellValueRecordInterface cval)
Creates an HSSFCell from a CellValueRecordInterface. |
protected |
HSSFCell(HSSFWorkbook book,
HSSFSheet sheet,
int row,
short col)
Creates new Cell - Should only be called by HSSFRow. |
protected |
HSSFCell(HSSFWorkbook book,
HSSFSheet sheet,
int row,
short col,
CellType type)
Creates new Cell - Should only be called by HSSFRow. |
Method Summary | |
---|---|
CellAddress |
getAddress()
Gets the address of this cell |
CellRangeAddress |
getArrayFormulaRange()
Only valid for array formula cells |
boolean |
getBooleanCellValue()
get the value of the cell as a boolean. |
protected InternalWorkbook |
getBoundWorkbook()
Returns the Workbook that this Cell is bound to |
int |
getCachedFormulaResultType()
Deprecated. 3.15. Will return a CellType enum in the future. |
CellType |
getCachedFormulaResultTypeEnum()
Only valid for formula cells |
HSSFComment |
getCellComment()
Returns comment associated with this cell |
java.lang.String |
getCellFormula()
Return a formula for the cell, for example, SUM(C4:E4) |
HSSFCellStyle |
getCellStyle()
get the style for the cell. |
int |
getCellType()
Deprecated. 3.15. Will be return a CellType enum in the future. |
CellType |
getCellTypeEnum()
get the cells type (numeric, formula or string) |
protected CellValueRecordInterface |
getCellValueRecord()
Should only be used by HSSFSheet and friends. |
int |
getColumnIndex()
Returns column index of this cell |
java.util.Date |
getDateCellValue()
Get the value of the cell as a date. |
byte |
getErrorCellValue()
get the value of the cell as an error code. |
HSSFHyperlink |
getHyperlink()
|
double |
getNumericCellValue()
Get the value of the cell as a number. |
HSSFRichTextString |
getRichStringCellValue()
get the value of the cell as a string - for numeric cells we throw an exception. |
HSSFRow |
getRow()
Returns the HSSFRow this cell belongs to |
int |
getRowIndex()
Returns row index of a row in the sheet that contains this cell |
HSSFSheet |
getSheet()
Returns the HSSFSheet this cell belongs to |
java.lang.String |
getStringCellValue()
get the value of the cell as a string - for numeric cells we throw an exception. |
boolean |
isPartOfArrayFormulaGroup()
|
void |
removeCellComment()
Removes the comment for this cell, if there is one. |
void |
removeHyperlink()
Removes the hyperlink for this cell, if there is one. |
void |
setAsActiveCell()
Sets this cell as the active cell for the worksheet |
void |
setCellComment(Comment comment)
Assign a comment to this cell. |
void |
setCellErrorValue(byte errorCode)
Deprecated. 3.15 beta 2. Use setCellErrorValue(FormulaError) instead. |
void |
setCellErrorValue(FormulaError error)
set a error value for the cell |
void |
setCellFormula(java.lang.String formula)
Sets formula for this cell. |
void |
setCellStyle(CellStyle style)
Set the style for the cell. |
void |
setCellStyle(HSSFCellStyle style)
|
void |
setCellType(CellType cellType)
Set the cells type (numeric, formula or string). |
void |
setCellType(int cellType)
Deprecated. POI 3.15 beta 3. Use setCellType(CellType) instead. |
void |
setCellValue(boolean value)
set a boolean value for the cell |
void |
setCellValue(java.util.Calendar value)
set a date value for the cell. |
void |
setCellValue(java.util.Date value)
set a date value for the cell. |
void |
setCellValue(double value)
set a numeric value for the cell |
void |
setCellValue(RichTextString value)
Set a string value for the cell. |
void |
setCellValue(java.lang.String value)
set a string value for the cell. |
void |
setHyperlink(Hyperlink hyperlink)
Assign a hyperlink to this cell. |
java.lang.String |
toString()
Returns a string representation of the cell This method returns a simple representation, anything more complex should be in user code, with knowledge of the semantics of the sheet being processed. |
protected void |
updateCellNum(short num)
Updates the cell record's idea of what column it belongs in (0 based) |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static final int LAST_COLUMN_NUMBER
public static final short ENCODING_UNCHANGED
public static final short ENCODING_COMPRESSED_UNICODE
public static final short ENCODING_UTF_16
Constructor Detail |
---|
protected HSSFCell(HSSFWorkbook book, HSSFSheet sheet, int row, short col)
When the cell is initially created it is set to CellType.BLANK
. Cell types
can be changed/overwritten by calling setCellValue with the appropriate
type as a parameter although conversions from one type to another may be
prohibited.
book
- - Workbook record of the workbook containing this cellsheet
- - Sheet record of the sheet containing this cellrow
- - the row of this cellcol
- - the column for this cellHSSFRow.createCell(int)
protected HSSFCell(HSSFWorkbook book, HSSFSheet sheet, int row, short col, CellType type)
book
- - Workbook record of the workbook containing this cellsheet
- - Sheet record of the sheet containing this cellrow
- - the row of this cellcol
- - the column for this celltype
- - Type of cellHSSFRow.createCell(int,int)
protected HSSFCell(HSSFWorkbook book, HSSFSheet sheet, CellValueRecordInterface cval)
book
- - Workbook record of the workbook containing this cellsheet
- - Sheet record of the sheet containing this cellcval
- - the Cell Value Record we wish to representMethod Detail |
---|
public HSSFSheet getSheet()
getSheet
in interface Cell
public HSSFRow getRow()
getRow
in interface Cell
protected InternalWorkbook getBoundWorkbook()
public int getRowIndex()
Cell
getRowIndex
in interface Cell
protected void updateCellNum(short num)
num
- the new cell numberpublic int getColumnIndex()
Cell
getColumnIndex
in interface Cell
public CellAddress getAddress()
getAddress
in interface Cell
A1
style address of this cellpublic void setCellType(int cellType)
setCellType(CellType)
instead.
setCellType
in interface Cell
CellType.NUMERIC
,
CellType.STRING
,
CellType.FORMULA
,
CellType.BLANK
,
CellType.BOOLEAN
,
CellType.ERROR
public void setCellType(CellType cellType)
setCellType
in interface Cell
public int getCellType()
CellType
enum in the future.
CellType
in a future version of POI.
For forwards compatibility, do not hard-code cell type literals in your code.
getCellType
in interface Cell
public CellType getCellTypeEnum()
getCellTypeEnum
in interface Cell
public void setCellValue(double value)
setCellValue
in interface Cell
value
- the numeric value to set this cell to. For formulas we'll set the
precalculated value, for numerics we'll set its value. For other types we
will change the cell to a numeric cell and set its value.public void setCellValue(java.util.Date value)
setCellValue
in interface Cell
value
- the date value to set this cell to. For formulas we'll set the
precalculated value, for numerics we'll set its value. For other types we
will change the cell to a numeric cell and set its value.public void setCellValue(java.util.Calendar value)
setCellValue(value.getTime())
which will
automatically shift the times to the default timezone.
setCellValue
in interface Cell
value
- the date value to set this cell to. For formulas we'll set the
precalculated value, for numerics we'll set its value. For othertypes we
will change the cell to a numeric cell and set its value.public void setCellValue(java.lang.String value)
setCellValue
in interface Cell
value
- value to set the cell to. For formulas we'll set the formula
cached string result, for String cells we'll set its value. For other types we will
change the cell to a string cell and set its value.
If value is null then we will change the cell to a Blank cell.public void setCellValue(RichTextString value)
setCellValue
in interface Cell
value
- value to set the cell to. For formulas we'll set the formula
string, for String cells we'll set its value. For other types we will
change the cell to a string cell and set its value.
If value is null
then we will change the cell to a Blank cell.public void setCellFormula(java.lang.String formula)
Cell
Note, this method only sets the formula string and does not calculate the formula value.
To set the precalculated value use Cell.setCellValue(double)
or Cell.setCellValue(String)
setCellFormula
in interface Cell
formula
- the formula to set, e.g. "SUM(C4:E4)"
.
If the argument is null
then the current formula is removed.public java.lang.String getCellFormula()
Cell
SUM(C4:E4)
getCellFormula
in interface Cell
public double getNumericCellValue()
HSSFDataFormatter
for turning this
number into a string similar to that which
Excel would render this number as.
getNumericCellValue
in interface Cell
for turning this number into a string similar to that which Excel would render this number as.
public java.util.Date getDateCellValue()
HSSFDataFormatter
for formatting
this date into a string similar to how excel does.
getDateCellValue
in interface Cell
for formatting this date into a string similar to how excel does.
public java.lang.String getStringCellValue()
getStringCellValue
in interface Cell
public HSSFRichTextString getRichStringCellValue()
getRichStringCellValue
in interface Cell
public void setCellValue(boolean value)
setCellValue
in interface Cell
value
- the boolean value to set this cell to. For formulas we'll set the
precalculated value, for booleans we'll set its value. For other types we
will change the cell to a boolean cell and set its value.public void setCellErrorValue(byte errorCode)
setCellErrorValue(FormulaError)
instead.
setCellErrorValue
in interface Cell
errorCode
- the error value to set this cell to. For formulas we'll set the
precalculated value , for errors we'll set
its value. For other types we will change the cell to an error
cell and set its value.
For error code byte, see FormulaError
.FormulaError
public void setCellErrorValue(FormulaError error)
error
- the error value to set this cell to. For formulas we'll set the
precalculated value , for errors we'll set
its value. For other types we will change the cell to an error
cell and set its value.public boolean getBooleanCellValue()
getBooleanCellValue
in interface Cell
public byte getErrorCellValue()
getErrorCellValue
in interface Cell
for error codes
public void setCellStyle(CellStyle style)
Set the style for the cell. The style should be an HSSFCellStyle created/retreived from the HSSFWorkbook.
To change the style of a cell without affecting other cells that use the same style,
use CellUtil.setCellStyleProperties(org.apache.poi.ss.usermodel.Cell, java.util.Map)
setCellStyle
in interface Cell
style
- reference contained in the workbookHSSFWorkbook.createCellStyle()
,
HSSFWorkbook.getCellStyleAt(int)
public void setCellStyle(HSSFCellStyle style)
public HSSFCellStyle getCellStyle()
getCellStyle
in interface Cell
workbook.getCellStyleAt(0)
HSSFWorkbook.getCellStyleAt(int)
protected CellValueRecordInterface getCellValueRecord()
public void setAsActiveCell()
setAsActiveCell
in interface Cell
public java.lang.String toString()
toString
in class java.lang.Object
public void setCellComment(Comment comment)
setCellComment
in interface Cell
comment
- comment associated with this cellpublic HSSFComment getCellComment()
getCellComment
in interface Cell
public void removeCellComment()
removeCellComment
in interface Cell
public HSSFHyperlink getHyperlink()
getHyperlink
in interface Cell
null
if not foundpublic void setHyperlink(Hyperlink hyperlink)
setHyperlink
in interface Cell
hyperlink
- hyperlink associated with this cellpublic void removeHyperlink()
removeHyperlink
in interface Cell
public int getCachedFormulaResultType()
CellType
enum in the future.
CellType
in a future version of POI.
For forwards compatibility, do not hard-code cell type literals in your code.
getCachedFormulaResultType
in interface Cell
CellType.NUMERIC
, CellType.STRING
,
CellType.BOOLEAN
, CellType.ERROR
) depending
on the cached value of the formulapublic CellType getCachedFormulaResultTypeEnum()
getCachedFormulaResultTypeEnum
in interface Cell
CellType.NUMERIC
, CellType.STRING
,
CellType.BOOLEAN
, CellType.ERROR
) depending
on the cached value of the formulapublic CellRangeAddress getArrayFormulaRange()
Cell
getArrayFormulaRange
in interface Cell
public boolean isPartOfArrayFormulaGroup()
isPartOfArrayFormulaGroup
in interface Cell
true
if this cell is part of group of cells having a common array formula.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |