- 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.voidWrites a single Bean to the table.voidwriteBeans(Collection<T> beans) Writes a collection of Beans to the table.voidWrites 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
RowWriter getRowWriter()Gets the row writer.- Returns:
- the row writer
-