- Type Parameters:
T
- the generic type
- All Known Implementing Classes:
BeanWriterImpl
public interface BeanWriter<T>
Class for writing Beans.
-
Method Summary
Modifier and TypeMethodDescriptionGets the row writer.void
Writes a single Bean to the table.void
writeBeans
(Collection<T> beans) Writes a collection of Beans to the table.void
Writes the header of a Bean type to the table.
-
Method Details
-
writeBeans
Writes a collection of Beans to the table.- Parameters:
beans
- beans to write to the table
-
writeBean
Writes a single Bean to the table.- Parameters:
bean
- bean to write to the table
-
writeHeader
void writeHeader()Writes the header of a Bean type to the table. -
getRowWriter
-