Interface CsvEntityEntry
- All Known Implementing Classes:
CsvComplexProperty,CsvEntityExpand,CsvEntityProperty
public interface CsvEntityEntry
A class for gathering data from an Entity into a CSV file.
- Author:
- scf
-
Method Summary
Modifier and TypeMethodDescriptionvoidwriteData(CsvRowCollector collector, Entity source) Collect data for CSV data rows.voidwriteHeader(CsvRowCollector collector) Collect data for the CSV header row.
-
Method Details
-
writeHeader
Collect data for the CSV header row.- Parameters:
collector- The collector to collect the data in.
-
writeData
Collect data for CSV data rows.- Parameters:
collector- The collector to collect the data in.source- The source entity to collect the data from.
-