Interface Exporter<T extends Descriptive>

    • Method Detail

      • getDefaultExportExtension

        static Extension getDefaultExportExtension()
        Gets the default export extension.
        Returns:
        Extension.CSV by default
      • getSupportedExtensions

        default Extension[] getSupportedExtensions()
        Returns an array of supported extensions, which by default contains only the default extension.
        Returns:
        an array with Extension type objects.
      • export

        default void export​(T target,
                            File directory,
                            Extension extension)
        Exports the available contents to directory without asking a confirmation from the user.

        A file is created with the name specified by the describe() method of target with the extension equal to the third argument of this method. A FileOutputStream writes the contents to the file by invoking printToStream and is closed upon completion.

        Parameters:
        directory - the directory where the contents will be exported to.
        target - a Descriptive target
        extension - the file extension. If it is not supported, the exporter will revert to its default extension
        Throws:
        IllegalArgumentException - if directory is not really a directory
        See Also:
        printToStream(T,java.io.FileOutputStream,pulse.io.export.Extension)
      • askToExport

        default File askToExport​(T target,
                                 JFrame parentWindow,
                                 String fileTypeLabel,
                                 File directory)
        Provides a JFileChooser for the user to select the export destination for target. The name of the file and its extension come from the selection the user makes by interacting with the dialog.
        Parameters:
        target - the exported target
        parentWindow - the parent frame.
        fileTypeLabel - the label describing the specific type of files that
        directory - the default directory of the file will be saved.
        Returns:
        the directory where files were exported
      • target

        Class<T> target()
        Defines the class, instances of which can be fed into the exporter to produce a result.
        Returns:
        a class implementing the Descriptive interface.
      • printToStream

        void printToStream​(T target,
                           FileOutputStream fos,
                           Extension extension)
        The interface method is implemented by the subclasses to define the exportable content in detail. Depending on the supported extensions, this will typically involve a switch statement that will invoke private methods defined in the subclass handling the different choices. The stream fos is usually closed implicitly in a try-with-resource clause.
        Parameters:
        target - the exported target
        fos - a FileOutputStream created by the export method
        extension - an extension of the file saved on disk
        See Also:
        export(T,java.io.File,pulse.io.export.Extension), askToExport(T,javax.swing.JFrame,java.lang.String,java.io.File)