|
Copyright © 2008-2011 Ralph Schuster. All Rights Reserved. | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use TableWriter | |
|---|---|
| csv.impl | Provides implementation classes for reading various kind of streams as well as producing such. |
| csv.util | Some utility classes for copying tables to each other and wrapper classes that ease reading and writing objects. |
| Uses of TableWriter in csv.impl |
|---|
| Classes in csv.impl that implement TableWriter | |
|---|---|
class |
AbstractStreamTableWriter
An abstract implementation of TableWriter. |
class |
AbstractTableWriter
Abstract implementation of writer interface. |
class |
CSVWriter
Implements functionality for writing CSV streams. |
class |
ExcelWriter
Provides ability to write Excel files. |
class |
HtmlWriter
Provides implementation for writing HTML table. |
class |
XmlWriter
Writer implementation for XML streams. |
| Uses of TableWriter in csv.util |
|---|
| Methods in csv.util that return TableWriter | |
|---|---|
TableWriter |
BeanWriter.getWriter()
Returns the current writer. |
| Methods in csv.util with parameters of type TableWriter | |
|---|---|
static int |
CSVUtils.copy(java.util.Collection<? extends java.lang.Object[]> collection,
TableWriter writer)
Copies the arrays from the collection to the stream. |
static int |
CSVUtils.copy(java.util.Iterator<? extends java.lang.Object[]> i,
TableWriter writer)
Copies the arrays from the iterator to the stream. |
static void |
CSVUtils.copy(javax.swing.JTable table,
TableWriter writer,
boolean writeHeaderRow,
boolean selectedOnly)
Deprecated. Use JTableReader and CSVUtils.copy(TableReader, TableWriter, boolean) |
static int |
CSVUtils.copy(java.lang.Object[][] arr,
TableWriter writer)
Copies the arrays from the iterator to the stream. |
static void |
CSVUtils.copy(java.sql.ResultSet resultSet,
TableWriter writer,
boolean writeHeaderRow)
Deprecated. Use JdbcReader and CSVUtils.copy(TableReader, TableWriter, boolean) |
static void |
CSVUtils.copy(TableReader reader,
TableWriter writer)
Copies content from one reader to another writer without header row. |
static void |
CSVUtils.copy(TableReader reader,
TableWriter writer,
boolean copyHeaderRow)
Copies content from one reader to another writer. |
static int |
CSVUtils.copyBeans(java.util.Collection<? extends java.lang.Object> collection,
TableWriter writer)
Copies the beans from the collection to the stream. |
static int |
CSVUtils.copyBeans(java.util.Iterator<? extends java.lang.Object> i,
TableWriter writer)
Copies the beans from the collection to the stream. |
static int |
CSVUtils.copyBeans(java.lang.Object[] arr,
TableWriter writer)
Copies the beans from the array to the stream. |
static void |
CSVUtils.copyHeader(java.sql.ResultSet resultSet,
TableWriter writer)
Copies the header of the JDBC result set into the table writer. |
static void |
CSVUtils.copyTableHeader(javax.swing.table.JTableHeader tableHeader,
TableWriter writer)
Copies the table header into the table writer. |
protected void |
BeanWriter.setWriter(TableWriter writer)
Sets the writer. |
| Constructors in csv.util with parameters of type TableWriter | |
|---|---|
BeanWriter(TableWriter writer,
boolean writeHeaderRow)
Constructor. |
|
|
Copyright © 2008-2011 Ralph Schuster. All Rights Reserved. | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||