Package net.sf.jasperreports.export
Interface JsonExporterConfiguration
-
- All Superinterfaces:
CommonExportConfiguration,ExporterConfiguration
- All Known Implementing Classes:
SimpleJsonExporterConfiguration
public interface JsonExporterConfiguration extends ExporterConfiguration
Interface containing settings used by the JSON exporter.- Author:
- Teodor Danciu (teodord@users.sourceforge.net)
- See Also:
JsonExporter
-
-
Field Summary
-
Fields inherited from interface net.sf.jasperreports.export.CommonExportConfiguration
PROPERTY_EXPORT_CONFIGURATION_OVERRIDE_REPORT_HINTS
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.BooleanisFlushOutput()A flag that determines whether the JSON exporter should flush the output stream after writing the JSON content to it.java.lang.BooleanisReportComponentsExportOnly()A flag that determines whether the JSON exporter should export only the report components, thus ignoring the page components-
Methods inherited from interface net.sf.jasperreports.export.CommonExportConfiguration
isOverrideHints
-
-
-
-
Method Detail
-
isFlushOutput
java.lang.Boolean isFlushOutput()
A flag that determines whether the JSON exporter should flush the output stream after writing the JSON content to it.
-
isReportComponentsExportOnly
java.lang.Boolean isReportComponentsExportOnly()
A flag that determines whether the JSON exporter should export only the report components, thus ignoring the page components
-
-