xelem.3.0

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

Packages that use Column
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.lex Provides classes that enable reading SpreadsheetML. 
 

Uses of Column in nl.fountain.xelem.excel
 

Methods in nl.fountain.xelem.excel that return Column
 Column Table.addColumn()
          Adds a new Column to this table.
 Column Worksheet.addColumn()
          Adds a new Column to this worksheet.
 Column Table.addColumn(Column column)
          Adds the given column to this table.
 Column Worksheet.addColumn(Column column)
          Adds the given column to this worksheet.
 Column Table.addColumnAt(int index)
          Adds a new Column at the given index to this table.
 Column Worksheet.addColumnAt(int index)
          Adds a new Column at the given index to this worksheet.
 Column Table.addColumnAt(int index, Column column)
          Adds the given Column at the given index to this table.
 Column Worksheet.addColumnAt(int index, Column column)
          Adds the given Column at the given index to this worksheet.
 Column Worksheet.addColumnAt(String label)
          Adds a new Column at the index specified by the given label.
 Column Worksheet.addColumnAt(String label, Column column)
          Adds the given Column at the given index specified by the given label.
 Column Table.getColumnAt(int index)
          Gets the column at the given index.
 Column Worksheet.getColumnAt(int columnIndex)
          Gets the column at the given index.
 Column Worksheet.getColumnAt(String label)
          Gets the column at the index specified by the given label.
 Column Table.removeColumnAt(int index)
          Removes the column at the given index.
 Column Worksheet.removeColumnAt(int columnIndex)
          Removes the column at the given index.
 Column Worksheet.removeColumnAt(String label)
          Removes the column at the index specified by the given label.
 

Methods in nl.fountain.xelem.excel that return types with arguments of type Column
 Iterator<Column> Table.columnIterator()
          Returns an iterator for the columns in this table.
 Collection<Column> Table.getColumns()
          Gets all the columns of this table in the order of their index.
 Collection<Column> Worksheet.getColumns()
          Gets all the columns of this worksheet in the order of their index.
 

Methods in nl.fountain.xelem.excel with parameters of type Column
 Column Table.addColumn(Column column)
          Adds the given column to this table.
 Column Worksheet.addColumn(Column column)
          Adds the given column to this worksheet.
 Column Table.addColumnAt(int index, Column column)
          Adds the given Column at the given index to this table.
 Column Worksheet.addColumnAt(int index, Column column)
          Adds the given Column at the given index to this worksheet.
 Column Worksheet.addColumnAt(String label, Column column)
          Adds the given Column at the given index specified by the given label.
 

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

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

Methods in nl.fountain.xelem.excel.ss that return Column
 Column SSTable.addColumn()
           
 Column SSWorksheet.addColumn()
           
 Column SSTable.addColumn(Column column)
           
 Column SSWorksheet.addColumn(Column column)
           
 Column SSTable.addColumnAt(int index)
           
 Column SSWorksheet.addColumnAt(int index)
           
 Column SSTable.addColumnAt(int index, Column column)
           
 Column SSWorksheet.addColumnAt(int index, Column column)
           
 Column SSWorksheet.addColumnAt(String label)
           
 Column SSWorksheet.addColumnAt(String label, Column column)
           
 Column SSTable.getColumnAt(int columnIndex)
           
 Column SSWorksheet.getColumnAt(int columnIndex)
           
 Column SSWorksheet.getColumnAt(String label)
           
 Column SSTable.removeColumnAt(int columnIndex)
           
 Column SSWorksheet.removeColumnAt(int columnIndex)
           
 Column SSWorksheet.removeColumnAt(String label)
           
 

Methods in nl.fountain.xelem.excel.ss that return types with arguments of type Column
 Iterator<Column> SSTable.columnIterator()
           
 Collection<Column> SSTable.getColumns()
           
 Collection<Column> SSWorksheet.getColumns()
           
 

Methods in nl.fountain.xelem.excel.ss with parameters of type Column
 Column SSTable.addColumn(Column column)
           
 Column SSWorksheet.addColumn(Column column)
           
 Column SSTable.addColumnAt(int index, Column column)
           
 Column SSWorksheet.addColumnAt(int index, Column column)
           
 Column SSWorksheet.addColumnAt(String label, Column column)
           
 

Uses of Column in nl.fountain.xelem.lex
 

Methods in nl.fountain.xelem.lex with parameters of type Column
 void ExcelReaderListener.setColumn(int sheetIndex, String sheetName, Column column)
          Recieve notification of the the construction of a Column.
 void WorkbookListener.setColumn(int sheetIndex, String sheetName, Column column)
          Called by event dispatcher.
 void DefaultExcelReaderListener.setColumn(int sheetIndex, String sheetName, Column column)
          Does effectively nothing.
 void DefaultExcelReaderFilter.setColumn(int sheetIndex, String sheetName, Column column)
          Passes the event unfiltered to it's listeners.
 


xelem.3.0