Uses of Interface
csv.TableWriter
| Package | Description |
|---|---|
| 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 Modifier and Type Class Description classAbstractStreamTableWriterAn abstract implementation of TableWriter.classAbstractTableWriterAbstract implementation of writer interface.classCSVWriterImplements functionality for writing CSV streams.classExcelWriterProvides ability to write Excel files.classHtmlWriterProvides implementation for writing HTML table.classXmlWriterWriter implementation for XML streams. -
Uses of TableWriter in csv.util
Methods in csv.util that return TableWriter Modifier and Type Method Description TableWriterBeanWriter. getWriter()Returns the current writer.Methods in csv.util with parameters of type TableWriter Modifier and Type Method Description static voidCSVUtils. copy(TableReader reader, TableWriter writer)Copies content from one reader to another writer without header row.static voidCSVUtils. copy(TableReader reader, TableWriter writer, boolean copyHeaderRow)Copies content from one reader to another writer.static intCSVUtils. copy(java.lang.Object[][] arr, TableWriter writer)Copies the arrays from the iterator to the stream.static voidCSVUtils. copy(java.sql.ResultSet resultSet, TableWriter writer, boolean writeHeaderRow)Deprecated.static intCSVUtils. copy(java.util.Collection<? extends java.lang.Object[]> collection, TableWriter writer)Copies the arrays from the collection to the stream.static intCSVUtils. copy(java.util.Iterator<? extends java.lang.Object[]> i, TableWriter writer)Copies the arrays from the iterator to the stream.static voidCSVUtils. copy(javax.swing.JTable table, TableWriter writer, boolean writeHeaderRow, boolean selectedOnly)Deprecated.static <T> intCSVUtils. copyBeans(java.util.Collection<T> collection, TableWriter writer)Copies the beans from the collection to the stream.static <T> intCSVUtils. copyBeans(java.util.Iterator<T> i, TableWriter writer)Copies the beans from the collection to the stream.static <T> intCSVUtils. copyBeans(T[] arr, TableWriter writer)Copies the beans from the array to the stream.static voidCSVUtils. copyHeader(java.sql.ResultSet resultSet, TableWriter writer)Copies the header of the JDBC result set into the table writer.static voidCSVUtils. copyTableHeader(javax.swing.table.JTableHeader tableHeader, TableWriter writer)Copies the table header into the table writer.protected voidBeanWriter. setWriter(TableWriter writer)Sets the writer.Constructors in csv.util with parameters of type TableWriter Constructor Description BeanWriter(TableWriter writer, boolean writeHeaderRow)Constructor.