Package pulse.io.export
Class ResultTableExporter
- java.lang.Object
-
- pulse.io.export.ResultTableExporter
-
- All Implemented Interfaces:
Exporter<ResultTable>
,Reflexive
public class ResultTableExporter extends Object implements Exporter<ResultTable>
A singletonExporter
which can process the results table. Invoked when the user selects to export the calculation results. The output is a summary file in eithercsv
orhtml
format.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ResultTableExporter
getInstance()
Gets the single instance of this class.Extension[]
getSupportedExtensions()
Bothhtml
andcsv
are suported.void
printToStream(ResultTable table, FileOutputStream fos, Extension extension)
This will create a single file with the output.Class<ResultTable>
target()
Defines the class, instances of which can be fed into the exporter to produce a result.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface pulse.io.export.Exporter
askToExport, export
-
-
-
-
Method Detail
-
getSupportedExtensions
public Extension[] getSupportedExtensions()
Bothhtml
andcsv
are suported.- Specified by:
getSupportedExtensions
in interfaceExporter<ResultTable>
- Returns:
- an array with
Extension
type objects.
-
printToStream
public void printToStream(ResultTable table, FileOutputStream fos, Extension extension)
This will create a single file with the output. Depending on whether the results table contain average results (with the respective error margins) or only individual results, the file might consist of one or two tables, first listing the average results and then finding what individual results have been used to calculate the latter. In thehtml
format, the errors are given in the same table cells as the values and are delimited by a plus-minus sign. Thehtml
table gives a pretty representation of the results whereas thecsv
, while difficult to read by a human, can be interpreted by most external tools such as LaTeX pgfplots, gnuplot, or excel.- Specified by:
printToStream
in interfaceExporter<ResultTable>
- Parameters:
table
- the exported targetfos
- a FileOutputStream created by theexport
methodextension
- an extension of the file saved on disk- See Also:
Exporter.export(T,java.io.File,pulse.io.export.Extension)
,Exporter.askToExport(T,javax.swing.JFrame,java.lang.String,java.io.File)
-
getInstance
public static ResultTableExporter getInstance()
Gets the single instance of this class.- Returns:
- the single instance of
ResultTableExporter
.
-
target
public Class<ResultTable> target()
Description copied from interface:Exporter
Defines the class, instances of which can be fed into the exporter to produce a result.- Specified by:
target
in interfaceExporter<ResultTable>
- Returns:
ResultTable.class
.
-
-