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 BufferPoolbufferPoolprivate java.util.Map<java.lang.String,?>configprivate booleanprettyPrinting
-
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 JsonWritercreateWriter(java.io.OutputStream out)JsonWritercreateWriter(java.io.OutputStream out, java.nio.charset.Charset charset)JsonWritercreateWriter(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:JsonWriterFactoryCreates a JSON writer to write a JSONobjectorarraystructure to the specified character stream. The writer is configured with the factory configuration.- Specified by:
createWriterin 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:JsonWriterFactoryCreates a JSON writer to write a JSONobjectorarraystructure 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:
createWriterin 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:JsonWriterFactoryCreates a JSON writer to write a JSONobjectorarraystructure 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:
createWriterin 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:JsonWriterFactoryReturns 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:
getConfigInUsein 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.
-
-