Interface ModelWriter

  • All Known Implementing Classes:
    DefaultModelWriter

    public interface ModelWriter
    Handles serialization of a model into some kind of textual format like XML.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void write​(java.io.File output, java.util.Map<java.lang.String,​java.lang.Object> options, Model model)
      Writes the supplied model to the specified file.
      void write​(java.io.OutputStream output, java.util.Map<java.lang.String,​java.lang.Object> options, Model model)
      Writes the supplied model to the specified byte stream.
      void write​(java.io.Writer output, java.util.Map<java.lang.String,​java.lang.Object> options, Model model)
      Writes the supplied model to the specified character writer.
    • Method Detail

      • write

        void write​(java.io.File output,
                   java.util.Map<java.lang.String,​java.lang.Object> options,
                   Model model)
            throws java.io.IOException
        Writes the supplied model to the specified file. Any non-existing parent directories of the output file will be created automatically.
        Parameters:
        output - The file to serialize the model to, must not be null.
        options - The options to use for serialization, may be null to use the default values.
        model - The model to serialize, must not be null.
        Throws:
        java.io.IOException - If the model could not be serialized.
      • write

        void write​(java.io.Writer output,
                   java.util.Map<java.lang.String,​java.lang.Object> options,
                   Model model)
            throws java.io.IOException
        Writes the supplied model to the specified character writer. The writer will be automatically closed before the method returns.
        Parameters:
        output - The writer to serialize the model to, must not be null.
        options - The options to use for serialization, may be null to use the default values.
        model - The model to serialize, must not be null.
        Throws:
        java.io.IOException - If the model could not be serialized.
      • write

        void write​(java.io.OutputStream output,
                   java.util.Map<java.lang.String,​java.lang.Object> options,
                   Model model)
            throws java.io.IOException
        Writes the supplied model to the specified byte stream. The stream will be automatically closed before the method returns.
        Parameters:
        output - The stream to serialize the model to, must not be null.
        options - The options to use for serialization, may be null to use the default values.
        model - The model to serialize, must not be null.
        Throws:
        java.io.IOException - If the model could not be serialized.