xelem.3.0

Uses of Interface
nl.fountain.xelem.excel.Cell

Packages that use Cell
nl.fountain.xelem.excel Provides interfaces and classes that represent elements in SpreadsheetML. 
nl.fountain.xelem.excel.ss Provides classes that represent elements of the spreadsheet namespace. 
nl.fountain.xelem.expat Provides classes that do not belong to the core of xelem. 
nl.fountain.xelem.lex Provides classes that enable reading SpreadsheetML. 
 

Uses of Cell in nl.fountain.xelem.excel
 

Methods in nl.fountain.xelem.excel that return Cell
 Cell Worksheet.addCell()
          Adds a new cell at the current position of the worksheets CellPointer and moves the cellpointer.
 Cell Row.addCell()
          Adds a new Cell to this row.
 Cell Worksheet.addCell(Cell cell)
          Adds the given cell at the current position of the worksheets CellPointer and moves the cellpointer.
 Cell Row.addCell(Cell cell)
          Adds the given Cell to this row.
 Cell Worksheet.addCell(double data)
          Adds a new cell at the current position of the worksheets CellPointer and moves the cellpointer.
 Cell Row.addCell(double data)
          Adds a new Cell to this row.
 Cell Worksheet.addCell(double data, String styleID)
          Adds a new cell at the current position of the worksheets CellPointer and moves the cellpointer.
 Cell Row.addCell(double data, String styleID)
          Adds a new Cell to this row.
 Cell Worksheet.addCell(int data)
          Adds a new cell at the current position of the worksheets CellPointer and moves the cellpointer.
 Cell Row.addCell(int data)
          Adds a new Cell to this row.
 Cell Worksheet.addCell(int data, String styleID)
          Adds a new cell at the current position of the worksheets CellPointer and moves the cellpointer.
 Cell Row.addCell(int data, String styleID)
          Adds a new Cell to this row.
 Cell Worksheet.addCell(Object data)
          Adds a new cell at the current position of the worksheets CellPointer and moves the cellpointer.
 Cell Row.addCell(Object data)
          Adds a new Cell to this row.
 Cell Worksheet.addCell(Object data, String styleID)
          Adds a new cell at the current position of the worksheets CellPointer and moves the cellpointer.
 Cell Row.addCell(Object data, String styleID)
          Adds a new Cell to this row.
 Cell Worksheet.addCellAt(Address address)
          Adds a new cell at the given address.
 Cell Worksheet.addCellAt(Address address, Cell cell)
          Adds the given cell at the given address.
 Cell Row.addCellAt(int index)
          Adds a new Cell at the given index.
 Cell Row.addCellAt(int index, Cell cell)
          Adds the given Cell at the given index.
 Cell Worksheet.addCellAt(int rowIndex, int columnIndex)
          Adds a new cell at the given row and column index.
 Cell Worksheet.addCellAt(int rowIndex, int columnIndex, Cell cell)
          Adds the given cell at the given row and column index.
 Cell Worksheet.addCellAt(String a1_ref)
          Adds a new cell at the address specified by the A1-reference string.
 Cell Worksheet.addCellAt(String a1_ref, Cell cell)
          Adds the given cell at the address specified by the A1-reference string.
 Cell Worksheet.getCellAt(Address address)
          Gets the cell at the given address.
 Cell Row.getCellAt(int index)
          Gets the cell at the given index.
 Cell Worksheet.getCellAt(int rowIndex, int columnIndex)
          Gets the cell at the given coordinates.
 Cell Worksheet.getCellAt(String a1_ref)
          Gets the cell at address specified by the given string in A1-reference style.
 Cell Worksheet.removeCellAt(Address address)
          Removes the cell at the given address.
 Cell Row.removeCellAt(int index)
          Removes the cell at the given index.
 Cell Worksheet.removeCellAt(int rowIndex, int columnIndex)
          Removes the cell at the given coordinates.
 Cell Worksheet.removeCellAt(String a1_ref)
          Removes the cell at the address specified by the A1-reference string.
 

Methods in nl.fountain.xelem.excel that return types with arguments of type Cell
 Iterator<Cell> Row.cellIterator()
          Returns an iterator for the cells in this row.
 TreeMap<Integer,Cell> Row.getCellMap()
          Gets all the cells of this row.
 Collection<Cell> Row.getCells()
          Gets all the cells of this row in the order of their index.
 

Methods in nl.fountain.xelem.excel with parameters of type Cell
 Cell Worksheet.addCell(Cell cell)
          Adds the given cell at the current position of the worksheets CellPointer and moves the cellpointer.
 Cell Row.addCell(Cell cell)
          Adds the given Cell to this row.
 Cell Worksheet.addCellAt(Address address, Cell cell)
          Adds the given cell at the given address.
 Cell Row.addCellAt(int index, Cell cell)
          Adds the given Cell at the given index.
 Cell Worksheet.addCellAt(int rowIndex, int columnIndex, Cell cell)
          Adds the given cell at the given row and column index.
 Cell Worksheet.addCellAt(String a1_ref, Cell cell)
          Adds the given cell at the address specified by the A1-reference string.
 

Uses of Cell in nl.fountain.xelem.excel.ss
 

Classes in nl.fountain.xelem.excel.ss that implement Cell
 class SSCell
          An implementation of the XLElement Cell.
 

Methods in nl.fountain.xelem.excel.ss that return Cell
 Cell SSWorksheet.addCell()
           
 Cell SSRow.addCell()
           
 Cell SSWorksheet.addCell(Cell cell)
           
 Cell SSRow.addCell(Cell cell)
           
 Cell SSWorksheet.addCell(double data)
           
 Cell SSRow.addCell(double data)
           
 Cell SSWorksheet.addCell(double data, String styleID)
           
 Cell SSRow.addCell(double data, String styleID)
           
 Cell SSWorksheet.addCell(int data)
           
 Cell SSRow.addCell(int data)
           
 Cell SSWorksheet.addCell(int data, String styleID)
           
 Cell SSRow.addCell(int data, String styleID)
           
 Cell SSWorksheet.addCell(Object data)
           
 Cell SSRow.addCell(Object data)
           
 Cell SSWorksheet.addCell(Object data, String styleID)
           
 Cell SSRow.addCell(Object data, String styleID)
           
 Cell SSWorksheet.addCellAt(Address address)
           
 Cell SSWorksheet.addCellAt(Address address, Cell cell)
           
 Cell SSRow.addCellAt(int index)
           
 Cell SSRow.addCellAt(int index, Cell cell)
           
 Cell SSWorksheet.addCellAt(int rowIndex, int columnIndex)
           
 Cell SSWorksheet.addCellAt(int rowIndex, int columnIndex, Cell cell)
           
 Cell SSWorksheet.addCellAt(String a1_ref)
           
 Cell SSWorksheet.addCellAt(String a1_ref, Cell cell)
           
 Cell SSWorksheet.getCellAt(Address address)
           
 Cell SSRow.getCellAt(int index)
           
 Cell SSWorksheet.getCellAt(int rowIndex, int columnIndex)
           
 Cell SSWorksheet.getCellAt(String a1_ref)
           
 Cell SSWorksheet.removeCellAt(Address address)
           
 Cell SSRow.removeCellAt(int index)
           
 Cell SSWorksheet.removeCellAt(int rowIndex, int columnIndex)
           
 Cell SSWorksheet.removeCellAt(String a1_ref)
           
 

Methods in nl.fountain.xelem.excel.ss that return types with arguments of type Cell
 Iterator<Cell> SSRow.cellIterator()
           
 TreeMap<Integer,Cell> SSRow.getCellMap()
           
 Collection<Cell> SSRow.getCells()
           
 

Methods in nl.fountain.xelem.excel.ss with parameters of type Cell
 Cell SSWorksheet.addCell(Cell cell)
           
 Cell SSRow.addCell(Cell cell)
           
 Cell SSWorksheet.addCellAt(Address address, Cell cell)
           
 Cell SSRow.addCellAt(int index, Cell cell)
           
 Cell SSWorksheet.addCellAt(int rowIndex, int columnIndex, Cell cell)
           
 Cell SSWorksheet.addCellAt(String a1_ref, Cell cell)
           
 

Uses of Cell in nl.fountain.xelem.expat
 

Methods in nl.fountain.xelem.expat with parameters of type Cell
 void XLDocument.setCellData(Cell cell, String sheetName, int rowIndex, int columnIndex)
          Will set or replace (only) the data-element of the cell-element at the intersection of the mentioned row- and columnIndex.
 

Uses of Cell in nl.fountain.xelem.lex
 

Methods in nl.fountain.xelem.lex with parameters of type Cell
 void ExcelReaderListener.setCell(int sheetIndex, String sheetName, int rowIndex, Cell cell)
          Recieve notification of the the construction of a Cell.
 void DefaultExcelReaderListener.setCell(int sheetIndex, String sheetName, int rowIndex, Cell cell)
          Does effectively nothing.
 void DefaultExcelReaderFilter.setCell(int sheetIndex, String sheetName, int rowIndex, Cell cell)
          Passes the event unfiltered to it's listeners.
 


xelem.3.0