Uses of Interface
javax.json.stream.JsonParser
-
Packages that use JsonParser Package Description javax.json Provides an object model API to process JSON.javax.json.spi Service Provider Interface (SPI) to plug in implementations for JSON processing objects.javax.json.stream Provides a streaming API to parse and generate JSON.org.glassfish.json -
-
Uses of JsonParser in javax.json
Methods in javax.json that return JsonParser Modifier and Type Method Description static JsonParser
Json. createParser(java.io.InputStream in)
Creates a JSON parser from a byte stream.static JsonParser
Json. createParser(java.io.Reader reader)
Creates a JSON parser from a character stream. -
Uses of JsonParser in javax.json.spi
Methods in javax.json.spi that return JsonParser Modifier and Type Method Description abstract JsonParser
JsonProvider. createParser(java.io.InputStream in)
Creates a JSON parser from the specified byte stream.abstract JsonParser
JsonProvider. createParser(java.io.Reader reader)
Creates a JSON parser from a character stream. -
Uses of JsonParser in javax.json.stream
Methods in javax.json.stream that return JsonParser Modifier and Type Method Description JsonParser
JsonParserFactory. createParser(java.io.InputStream in)
Creates a JSON parser from the specified byte stream.JsonParser
JsonParserFactory. createParser(java.io.InputStream in, java.nio.charset.Charset charset)
Creates a JSON parser from the specified byte stream.JsonParser
JsonParserFactory. createParser(java.io.Reader reader)
Creates a JSON parser from a character 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. -
Uses of JsonParser in org.glassfish.json
Classes in org.glassfish.json that implement JsonParser Modifier and Type Class Description class
JsonParserImpl
JSON parser implementation.Methods in org.glassfish.json that return JsonParser Modifier and Type Method Description JsonParser
JsonProviderImpl. createParser(java.io.InputStream in)
JsonParser
JsonProviderImpl. createParser(java.io.Reader reader)
-