Uses of Class
org.apache.poi.hssf.model.Sheet

Packages that use Sheet
org.apache.poi.hssf.model Provides low level API structures for reading, writing, modifying XLS files. 
org.apache.poi.hssf.usermodel usermodel package maps HSSF low level strutures to familiar workbook/sheet model  
 

Uses of Sheet in org.apache.poi.hssf.model
 

Methods in org.apache.poi.hssf.model that return Sheet
static Sheet Sheet.createSheet(java.util.List recs, int sheetnum, int offset)
          read support (offset used as starting point for search) for low level API.
static Sheet Sheet.createSheet(java.util.List records, int sheetnum)
          read support (offset = 0) Same as createSheet(Record[] recs, int, int) only the record offset is assumed to be 0.
static Sheet Sheet.createSheet()
          Creates a sheet with all the usual records minus values and the "index" record (not required).
 

Uses of Sheet in org.apache.poi.hssf.usermodel
 

Methods in org.apache.poi.hssf.usermodel that return Sheet
protected  Sheet HSSFSheet.getSheet()
          used internally in the API to get the low level Sheet record represented by this Object.
 

Constructors in org.apache.poi.hssf.usermodel with parameters of type Sheet
HSSFRow(Workbook book, Sheet sheet, short rowNum)
          Creates new HSSFRow from scratch.
HSSFRow(Workbook book, Sheet sheet, RowRecord record)
          Creates an HSSFRow from a low level RowRecord object.
HSSFCell(Workbook book, Sheet sheet, short row, short col)
          Creates new Cell - Should only be called by HSSFRow.
HSSFCell(Workbook book, Sheet sheet, short row, short col, int type)
          Deprecated. As of 22-Jan-2002 use @see org.apache.poi.hssf.usermodel.HSSFRow#createCell(short) and use setCellValue to specify the type lazily.
HSSFCell(Workbook book, Sheet sheet, short row, CellValueRecordInterface cval)
          Creates an HSSFCell from a CellValueRecordInterface.
HSSFSheet(Workbook book, Sheet sheet)
          Creates an HSSFSheet representing the given Sheet object.
 



Copyright © 2002 Apache jakarta-poi project. All Rights Reserved.