Uses of Interface
csv.TableWriter
Packages that use TableWriter
Package
Description
Provides implementation classes for reading various kind of streams as well as producing
such.
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 TableWriterModifier and TypeClassDescriptionclassAn abstract implementation of TableWriter.classAbstract implementation of writer interface.classImplements functionality for writing CSV streams.classProvides ability to write classic Excel files.classProvides implementation for writing HTML table.classProvides ability to write XML-based Excel files.classWriter implementation for XML streams. -
Uses of TableWriter in csv.util
Fields in csv.util declared as TableWriterMethods in csv.util that return TableWriterModifier and TypeMethodDescriptionBeanWriter.getWriter()Returns the current writer.ObjectWriter.getWriter()Returns the table writer.Methods in csv.util with parameters of type TableWriterModifier and TypeMethodDescriptionstatic 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(Object[][] arr, TableWriter writer) Copies the arrays from the iterator to the stream.static intCSVUtils.copy(Collection<? extends Object[]> collection, TableWriter writer) Copies the arrays from the collection to the stream.static intCSVUtils.copy(Iterator<? extends Object[]> i, TableWriter writer) Copies the arrays from the iterator to the stream.static <T> intCSVUtils.copyBeans(Collection<T> collection, TableWriter writer) Copies the beans from the collection to the stream.static <T> intCSVUtils.copyBeans(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(ResultSet resultSet, TableWriter writer) Copies the header of the JDBC result set into the table writer.static voidCSVUtils.copyTableHeader(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 TableWriterModifierConstructorDescriptionBeanWriter(TableWriter writer, boolean writeHeaderRow) Constructor.ObjectWriter(TableWriter writer, ObjectConverter<T> converter) Constructor.ObjectWriter(TableWriter writer, ObjectConverter<T> converter, TableHeaderProvider headerProvider) Constructor.