public abstract class JsonProvider extends Object
All the methods in this class are safe for use by multiple concurrent threads.
ServiceLoader
Modifier | Constructor and Description |
---|---|
protected |
JsonProvider() |
Modifier and Type | Method and Description |
---|---|
abstract JsonArrayBuilder |
createArrayBuilder()
Creates a JSON array builder
|
abstract JsonBuilderFactory |
createBuilderFactory(Map<String,?> config)
Creates a builder factory for creating
JsonArrayBuilder
and JsonObjectBuilder objects. |
abstract JsonGenerator |
createGenerator(OutputStream out)
Creates a JSON generator for writing JSON text to a byte stream.
|
abstract JsonGenerator |
createGenerator(Writer writer)
Creates a JSON generator for writing JSON text to a character stream.
|
abstract JsonGeneratorFactory |
createGeneratorFactory(Map<String,?> config)
Creates a generator factory for creating
JsonGenerator instances. |
abstract JsonObjectBuilder |
createObjectBuilder()
Creates a JSON object builder
|
abstract JsonParser |
createParser(InputStream in)
Creates a JSON parser from the specified byte stream.
|
abstract JsonParser |
createParser(Reader reader)
Creates a JSON parser from a character stream.
|
abstract JsonParserFactory |
createParserFactory(Map<String,?> config)
Creates a parser factory for creating
JsonParser instances. |
abstract JsonReader |
createReader(InputStream in)
Creates a JSON reader from a byte stream.
|
abstract JsonReader |
createReader(Reader reader)
Creates a JSON reader from a character stream.
|
abstract JsonReaderFactory |
createReaderFactory(Map<String,?> config)
Creates a reader factory for creating
JsonReader objects. |
abstract JsonWriter |
createWriter(OutputStream out)
|
abstract JsonWriter |
createWriter(Writer writer)
|
abstract JsonWriterFactory |
createWriterFactory(Map<String,?> config)
Creates a writer factory for creating
JsonWriter objects. |
static JsonProvider |
provider()
Creates a JSON provider object.
|
public static JsonProvider provider()
ServiceLoader.load(Class)
method. If there are no available
service providers, this method returns the default service provider.ServiceLoader
public abstract JsonParser createParser(Reader reader)
reader
- i/o reader from which JSON is to be readpublic abstract JsonParser createParser(InputStream in)
in
- i/o stream from which JSON is to be readJsonException
- if encoding cannot be determined
or i/o error (IOException would be cause of JsonException)public abstract JsonParserFactory createParserFactory(Map<String,?> config)
JsonParser
instances.
The factory is configured with the specified map of
provider specific configuration properties. Provider implementations
should ignore any unsupported configuration properties specified in
the map.config
- a map of provider specific properties to configure the
JSON parsers. The map may be empty or nullpublic abstract JsonGenerator createGenerator(Writer writer)
writer
- a i/o writer to which JSON is writtenpublic abstract JsonGenerator createGenerator(OutputStream out)
out
- i/o stream to which JSON is writtenpublic abstract JsonGeneratorFactory createGeneratorFactory(Map<String,?> config)
JsonGenerator
instances.
The factory is configured with the specified map of provider specific
configuration properties. Provider implementations should
ignore any unsupported configuration properties specified in the map.config
- a map of provider specific properties to configure the
JSON generators. The map may be empty or nullpublic abstract JsonReader createReader(Reader reader)
reader
- a reader from which JSON is to be readpublic abstract JsonReader createReader(InputStream in)
in
- a byte stream from which JSON is to be readpublic abstract JsonWriter createWriter(Writer writer)
writer
- to which JSON object or array is writtenpublic abstract JsonWriter createWriter(OutputStream out)
object
or array
structure to the specified byte stream. Characters written to
the stream are encoded into bytes using UTF-8 encoding.out
- to which JSON object or array is writtenpublic abstract JsonWriterFactory createWriterFactory(Map<String,?> config)
JsonWriter
objects.
The factory is configured with the specified map of provider specific
configuration properties. Provider implementations should ignore any
unsupported configuration properties specified in the map.config
- a map of provider specific properties to configure the
JSON writers. The map may be empty or nullpublic abstract JsonReaderFactory createReaderFactory(Map<String,?> config)
JsonReader
objects.
The factory is configured with the specified map of provider specific
configuration properties. Provider implementations should ignore any
unsupported configuration properties specified in the map.config
- a map of provider specific properties to configure the
JSON readers. The map may be empty or nullpublic abstract JsonObjectBuilder createObjectBuilder()
public abstract JsonArrayBuilder createArrayBuilder()
public abstract JsonBuilderFactory createBuilderFactory(Map<String,?> config)
JsonArrayBuilder
and JsonObjectBuilder
objects.
The factory is configured with the specified map of provider specific
configuration properties. Provider implementations should ignore any
unsupported configuration properties specified in the map.config
- a map of provider specific properties to configure the
JSON builders. The map may be empty or nullCopyright © 1996-2013, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.