Interface DataExporter
- All Known Implementing Classes:
- AbstractDataExporter,- HtmlTemplateExporter,- JsonExporter
public interface DataExporter
The Interface DataExporter represents an engine to export data from samples
 consumption.
- Since:
- 3.0
- 
Method SummaryModifier and TypeMethodDescriptionvoidexport(SampleContext context, File file, ReportGeneratorConfiguration configuration) Export data from the specified context using the given configuration.getName()Gets the name of the exporter.voidSets the name of the exporter.
- 
Method Details- 
getNameString getName()Gets the name of the exporter.- Returns:
- the name of the exporter
 
- 
setNameSets the name of the exporter.- Parameters:
- name- the new name of the exporter
 
- 
exportvoid export(SampleContext context, File file, ReportGeneratorConfiguration configuration) throws ExportException Export data from the specified context using the given configuration.- Parameters:
- context- the context (must not be- null)
- file- the file which from samples come (must not be- null)
- configuration- the configuration (must not be- null)
- Throws:
- ExportException- the export exception
 
 
-