Package org.glassfish.json
Class JsonWriterFactoryImpl
- java.lang.Object
-
- org.glassfish.json.JsonWriterFactoryImpl
-
- All Implemented Interfaces:
JsonWriterFactory
class JsonWriterFactoryImpl extends java.lang.Object implements JsonWriterFactory
-
-
Field Summary
Fields Modifier and Type Field Description private BufferPool
bufferPool
private java.util.Map<java.lang.String,?>
config
private boolean
prettyPrinting
-
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)
JsonWriter
createWriter(java.io.OutputStream out, java.nio.charset.Charset charset)
JsonWriter
createWriter(java.io.Writer writer)
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.
-
-
-
Field Detail
-
config
private final java.util.Map<java.lang.String,?> config
-
prettyPrinting
private final boolean prettyPrinting
-
bufferPool
private final BufferPool bufferPool
-
-
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 JSONobject
orarray
structure to the specified character stream. The writer is configured with the factory configuration.- Specified by:
createWriter
in interfaceJsonWriterFactory
- 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 JSONobject
orarray
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 interfaceJsonWriterFactory
- 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 JSONobject
orarray
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 interfaceJsonWriterFactory
- Parameters:
out
- to which JSON object or array is writtencharset
- 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 interfaceJsonWriterFactory
- Returns:
- a map of supported provider specific properties that are used to configure the created writers. The map may be empty but not null.
-
-