|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.poi.hssf.util.HSSFCellUtil
CellUtil
instead.
public final class HSSFCellUtil
Various utility functions that make working with a cells and rows easier. The various methods that deal with style's allow you to create your HSSFCellStyles as you need them. When you apply a style change to a cell, the code will attempt to see if a style already exists that meets your needs. If not, then it will create a new style. This is to prevent creating too many styles. there is an upper limit in Excel on the number of styles that can be supported.
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public static HSSFRow getRow(int rowIndex, HSSFSheet sheet)
CellUtil.getRow(int, org.apache.poi.ss.usermodel.Sheet)
instead.
rowIndex
- The 0 based row numbersheet
- The sheet that the row is part of.
public static HSSFCell getCell(HSSFRow row, int columnIndex)
CellUtil.getCell(org.apache.poi.ss.usermodel.Row, int)
instead.
row
- The row that the cell is part ofcolumnIndex
- The column index that the cell is in.
public static HSSFCell createCell(HSSFRow row, int column, java.lang.String value, HSSFCellStyle style)
CellUtil.createCell(org.apache.poi.ss.usermodel.Row, int, java.lang.String, org.apache.poi.ss.usermodel.CellStyle)
instead.
row
- the row to create the cell incolumn
- the column index to create the cell invalue
- The value of the cellstyle
- If the style is not null, then set
public static HSSFCell createCell(HSSFRow row, int column, java.lang.String value)
CellUtil.createCell(org.apache.poi.ss.usermodel.Row, int, java.lang.String, org.apache.poi.ss.usermodel.CellStyle)
instead.
row
- the row to create the cell incolumn
- the column index to create the cell invalue
- The value of the cell
public static void setAlignment(HSSFCell cell, HSSFWorkbook workbook, short align)
CellUtil.setAlignment(org.apache.poi.ss.usermodel.Cell, org.apache.poi.ss.usermodel.Workbook, short)
instead.
cell
- the cell to set the alignment forworkbook
- The workbook that is being worked with.align
- the column alignment to use.for alignment options
public static void setFont(HSSFCell cell, HSSFWorkbook workbook, HSSFFont font)
CellUtil.setFont(org.apache.poi.ss.usermodel.Cell, org.apache.poi.ss.usermodel.Workbook, org.apache.poi.ss.usermodel.Font)
instead.
cell
- the cell to set the alignment forworkbook
- The workbook that is being worked with.font
- The HSSFFont that you want to set.public static void setCellStyleProperty(HSSFCell cell, HSSFWorkbook workbook, java.lang.String propertyName, java.lang.Object propertyValue)
CellUtil.setCellStyleProperty(org.apache.poi.ss.usermodel.Cell, org.apache.poi.ss.usermodel.Workbook, java.lang.String, java.lang.Object)
instead.
workbook
- The workbook that is being worked with.propertyName
- The name of the property that is to be changed.propertyValue
- The value of the property that is to be changed.cell
- The cell that needs it's style changespublic static HSSFCell translateUnicodeValues(HSSFCell cell)
CellUtil.translateUnicodeValues(org.apache.poi.ss.usermodel.Cell)
instead.
cell
- The cell to check for unicode values
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |