Uses of Class
javax.json.JsonConfiguration

Packages that use JsonConfiguration
javax.json Java API for JSON Processing (JSON-P) API provides a way to process (for e.g. 
javax.json.spi SPI to plugin implementations for JsonParser and JsonGenerator portably. 
 

Uses of JsonConfiguration in javax.json
 

Methods in javax.json that return JsonConfiguration
 JsonConfiguration JsonConfiguration.with(JsonFeature feature)
          Adds a feature to this configuration
 JsonConfiguration JsonConfiguration.withPrettyPrinting()
          Adds pretty printing feature to this configuration
 

Methods in javax.json with parameters of type JsonConfiguration
static JsonGenerator Json.createGenerator(OutputStream out, JsonConfiguration config)
          Creates a JSON generator which can be used to write JSON text to the specified byte stream.
static JsonGenerator Json.createGenerator(OutputStream out, String encoding, JsonConfiguration config)
          Creates a JSON generator which can be used to write JSON text to the specified byte stream.
static JsonGenerator Json.createGenerator(Writer writer, JsonConfiguration config)
          Creates a JSON generator which can be used to write JSON text to the specified character stream.
static JsonGeneratorFactory Json.createGeneratorFactory(JsonConfiguration config)
          Creates a generator factory which can be used to create JsonGenerator.
static JsonParser Json.createParser(InputStream in, JsonConfiguration config)
          Creates a JSON parser from the specified byte stream.
static JsonParser Json.createParser(InputStream in, String encoding, JsonConfiguration config)
          Creates a JSON parser from the specified byte stream.
static JsonParser Json.createParser(JsonArray array, JsonConfiguration config)
          Creates a JSON parser from the specified JSON array.
static JsonParser Json.createParser(JsonObject obj, JsonConfiguration config)
          Creates a JSON parser from the specified JSON object.
static JsonParser Json.createParser(Reader reader, JsonConfiguration config)
          Creates a JSON parser from the specified character stream.
static JsonParserFactory Json.createParserFactory(JsonConfiguration config)
          Creates a parser factory which can be used to create JsonParser.
 

Constructors in javax.json with parameters of type JsonConfiguration
JsonReader(InputStream in, String encoding, JsonConfiguration config)
          Creates a JSON reader from a byte stream.
JsonReader(Reader reader, JsonConfiguration config)
          Creates a JSON reader from a character stream
JsonWriter(OutputStream out, JsonConfiguration config)
          Creates a JSON writer which can be used to write a JSON object or array structure to the specified byte stream.
JsonWriter(OutputStream out, String encoding, JsonConfiguration config)
          Creates a JSON writer which can be used to write a JSON object or array structure to the specified byte stream.
JsonWriter(Writer writer, JsonConfiguration config)
          Creates a JSON writer which can be used to write a JSON object or array structure to the specified character stream.
 

Uses of JsonConfiguration in javax.json.spi
 

Methods in javax.json.spi with parameters of type JsonConfiguration
abstract  JsonGenerator JsonProvider.createGenerator(OutputStream out, JsonConfiguration config)
          Creates a JSON generator which can be used to write JSON text to the specified byte stream.
abstract  JsonGenerator JsonProvider.createGenerator(OutputStream out, String encoding, JsonConfiguration config)
          Creates a JSON generator which can be used to write JSON text to the specified byte stream.
abstract  JsonGenerator JsonProvider.createGenerator(Writer writer, JsonConfiguration config)
          Creates a JSON generator which can be used to write JSON text to the specified character stream.
abstract  JsonGeneratorFactory JsonProvider.createGeneratorFactory(JsonConfiguration config)
          Creates a generator factory which can be used to create JsonGenerator.
abstract  JsonParser JsonProvider.createParser(InputStream in, JsonConfiguration config)
          Creates a JSON parser from the specified byte stream.
abstract  JsonParser JsonProvider.createParser(InputStream in, String encoding, JsonConfiguration config)
          Creates a JSON parser from the specified byte stream.
abstract  JsonParser JsonProvider.createParser(JsonArray array, JsonConfiguration config)
          Creates a JSON parser from the specified JSON array.
abstract  JsonParser JsonProvider.createParser(JsonObject object, JsonConfiguration config)
          Creates a JSON parser from the specified JSON object.
abstract  JsonParser JsonProvider.createParser(Reader reader, JsonConfiguration config)
          Creates a JSON parser from the specified character stream.
abstract  JsonParserFactory JsonProvider.createParserFactory(JsonConfiguration config)
          Creates a parser factory which can be used to create JsonParser.
 




Copyright © 2012 Oracle and/or its affiliates. All rights reserved.