Package org.glassfish.json
Class JsonWriterFactoryImpl
java.lang.Object
org.glassfish.json.JsonWriterFactoryImpl
- All Implemented Interfaces:
JsonWriterFactory
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionJsonWriterFactoryImpl
(Map<String, ?> config, boolean prettyPrinting, BufferPool bufferPool) -
Method Summary
Modifier and TypeMethodDescriptioncreateWriter
(OutputStream out) createWriter
(OutputStream out, Charset charset) createWriter
(Writer writer) Returns read-only map of supported provider specific configuration properties that are used to configure the created JSON writer objects.
-
Field Details
-
config
-
prettyPrinting
private final boolean prettyPrinting -
bufferPool
-
-
Constructor Details
-
JsonWriterFactoryImpl
JsonWriterFactoryImpl(Map<String, ?> config, boolean prettyPrinting, BufferPool bufferPool)
-
-
Method Details
-
createWriter
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
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
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
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.
-