|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use JsonParser | |
|---|---|
| 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. |
| javax.json.stream | Provides a streaming API to parse and generate JSON. |
| Uses of JsonParser in javax.json |
|---|
| Methods in javax.json that return JsonParser | |
|---|---|
static JsonParser |
Json.createParser(InputStream in)
Creates a JSON parser from the specified byte stream. |
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)
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)
Creates a JSON parser from the specified JSON array. |
static JsonParser |
Json.createParser(JsonArray array,
JsonConfiguration config)
Creates a JSON parser from the specified JSON array. |
static JsonParser |
Json.createParser(JsonObject object)
Creates a JSON parser from the specified JSON object. |
static JsonParser |
Json.createParser(JsonObject obj,
JsonConfiguration config)
Creates a JSON parser from the specified JSON object. |
static JsonParser |
Json.createParser(Reader reader)
Creates a JSON parser from the specified character stream |
static JsonParser |
Json.createParser(Reader reader,
JsonConfiguration config)
Creates a JSON parser from the specified character stream. |
| Uses of JsonParser in javax.json.spi |
|---|
| Methods in javax.json.spi that return JsonParser | |
|---|---|
abstract JsonParser |
JsonProvider.createParser(InputStream in)
Creates a JSON parser from the specified byte stream. |
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)
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)
Creates a JSON parser from the specified JSON array. |
abstract JsonParser |
JsonProvider.createParser(JsonArray array,
JsonConfiguration config)
Creates a JSON parser from the specified JSON array. |
abstract JsonParser |
JsonProvider.createParser(JsonObject object)
Creates a JSON parser from the specified JSON object. |
abstract JsonParser |
JsonProvider.createParser(JsonObject object,
JsonConfiguration config)
Creates a JSON parser from the specified JSON object. |
abstract JsonParser |
JsonProvider.createParser(Reader reader)
Creates a JSON parser from the specified character stream |
abstract JsonParser |
JsonProvider.createParser(Reader reader,
JsonConfiguration config)
Creates a JSON parser from the specified character stream. |
| Uses of JsonParser in javax.json.stream |
|---|
| Methods in javax.json.stream that return JsonParser | |
|---|---|
JsonParser |
JsonParserFactory.createParser(InputStream in)
Creates a JSON parser from the specified byte stream. |
JsonParser |
JsonParserFactory.createParser(InputStream in,
String encoding)
Creates a JSON parser from the specified byte stream. |
JsonParser |
JsonParserFactory.createParser(JsonArray array)
Creates a JSON parser from the specified JSON array. |
JsonParser |
JsonParserFactory.createParser(JsonObject obj)
Creates a JSON parser from the specified JSON object. |
JsonParser |
JsonParserFactory.createParser(Reader reader)
Creates a JSON parser from a character stream |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||