Class JsonWriterFactoryImpl

java.lang.Object
org.glassfish.json.JsonWriterFactoryImpl
All Implemented Interfaces:
JsonWriterFactory

class JsonWriterFactoryImpl extends Object implements JsonWriterFactory
  • Field Details

    • config

      private final Map<String,?> config
    • prettyPrinting

      private final boolean prettyPrinting
    • bufferPool

      private final BufferPool bufferPool
  • Constructor Details

    • JsonWriterFactoryImpl

      JsonWriterFactoryImpl(Map<String,?> config, boolean prettyPrinting, BufferPool bufferPool)
  • Method Details

    • createWriter

      public JsonWriter createWriter(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(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(OutputStream out, 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 Map<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.