Class JsonWriterFactoryImpl

    • Constructor Summary

      Constructors 
      Constructor Description
      JsonWriterFactoryImpl​(java.util.Map<java.lang.String,​?> config, boolean prettyPrinting, BufferPool bufferPool)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      JsonWriter createWriter​(java.io.OutputStream out)
      Creates a JSON writer to write a JSON object or array structure to the specified byte stream.
      JsonWriter createWriter​(java.io.OutputStream out, java.nio.charset.Charset charset)
      Creates a JSON writer to write a JSON object or array structure to the specified byte stream.
      JsonWriter createWriter​(java.io.Writer writer)
      Creates a JSON writer to write a JSON object or array structure to the specified character stream.
      java.util.Map<java.lang.String,​?> getConfigInUse()
      Returns read-only map of supported provider specific configuration properties that are used to configure the created JSON writer objects.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • config

        private final java.util.Map<java.lang.String,​?> config
      • prettyPrinting

        private final boolean prettyPrinting
    • Constructor Detail

      • JsonWriterFactoryImpl

        JsonWriterFactoryImpl​(java.util.Map<java.lang.String,​?> config,
                              boolean prettyPrinting,
                              BufferPool bufferPool)
    • Method Detail

      • createWriter

        public JsonWriter createWriter​(java.io.Writer writer)
        Description copied from interface: JsonWriterFactory
        Creates a JSON writer to write a JSON object or array structure to the specified character stream. The writer is configured with the factory configuration.
        Specified by:
        createWriter in interface JsonWriterFactory
        Parameters:
        writer - to which JSON object or array is written
        Returns:
        a JSON writer
      • createWriter

        public JsonWriter createWriter​(java.io.OutputStream out)
        Description copied from interface: JsonWriterFactory
        Creates a JSON writer to write a JSON object or array structure to the specified byte stream. Characters written to the stream are encoded into bytes using UTF-8 encoding. The writer is configured with the factory configuration.
        Specified by:
        createWriter in interface JsonWriterFactory
        Parameters:
        out - to which JSON object or array is written
        Returns:
        a JSON writer
      • createWriter

        public JsonWriter createWriter​(java.io.OutputStream out,
                                       java.nio.charset.Charset charset)
        Description copied from interface: JsonWriterFactory
        Creates a JSON writer to write a JSON object or array structure to the specified byte stream. Characters written to the stream are encoded into bytes using the specified charset. The writer is configured with the factory configuration.
        Specified by:
        createWriter in interface JsonWriterFactory
        Parameters:
        out - to which JSON object or array is written
        charset - a charset
        Returns:
        a JSON writer
      • getConfigInUse

        public java.util.Map<java.lang.String,​?> getConfigInUse()
        Description copied from interface: JsonWriterFactory
        Returns read-only map of supported provider specific configuration properties that are used to configure the created JSON writer objects. If there are any specified configuration properties that are not supported by the provider, they won't be part of the returned map.
        Specified by:
        getConfigInUse in interface JsonWriterFactory
        Returns:
        a map of supported provider specific properties that are used to configure the created writers. The map may be empty but not null.