| Home >> All >> org >> apache >> cocoon >> poi >> hssf >> [ usermodel Javadoc ] |
org.apache.cocoon.poi.hssf.usermodel: Javadoc index of package org.apache.cocoon.poi.hssf.usermodel.
Package Samples:
org.apache.cocoon.poi.hssf.usermodel
Classes:
HSSFDataFormat: Utility to identify builin formats. The following is a list of the formats as returned by this class. 0, "General" 1, "0" 2, "0.00" 3, "#,##0" 4, "#,##0.00" 5, "($#,##0_);($#,##0)" 6, "($#,##0_);[Red]($#,##0)" 7, "($#,##0.00);($#,##0.00)" 8, "($#,##0.00_);[Red]($#,##0.00)" 9, "0%" 0xa, "0.00%" 0xb, "0.00E+00" 0xc, "# ?/?" 0xd, "# ??/??" 0xe, "m/d/yy" 0xf, "d-mmm-yy" 0x10, "d-mmm" 0x11, "mmm-yy" 0x12, "h:mm AM/PM" 0x13, "h:mm:ss AM/PM" 0x14, "h:mm" 0x15, "h:mm:ss" 0x16, "m/d/yy h:mm" // 0x17 - 0x24 reserved for international and undocumented 0x25, "(#,##0_);(#,##0)" 0x26, "(#,##0_);[Red](#,##0)" ...
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 conatin numbers and numeric cells cannot contain strings (at least according to our model). Client apps should do the conversions themselves. Formula cells are treated like string cells, simply containing a formula string. They'll be rendered differently. Cells should have their number (0 based) before being added to a row. Only cells that have values should be added. NOTE: the alpha won't be implementing formulas
HSSFWorkbook: High level representation of a workbook. This is the first object most users will construct whether they are reading or writing a workbook. It is also the top level object for creating new sheets/etc.
HSSFRow: High level representation of a row of a spreadsheet. Only rows that have cells should be added to a Sheet.
HSSFCellStyle: High level representation of the style of a cell in a sheet of a workbook.
HSSFColorConstants: contains constants representing colors in the file.
HSSFSheet: High level representation of a worksheet.
TestCellStyle: Class to test cell styling functionality
HSSFFont: Represents a Font used in a workbook.
TestWorkbook: Class to test Workbook functionality
| Home | Contact Us | Privacy Policy | Terms of Service |