Uses of Interface
jakarta.json.stream.JsonParser
-
Packages that use JsonParser Package Description jakarta.json Provides an object model API to process JSON.jakarta.json.spi Service Provider Interface (SPI) to plug in implementations for JSON processing objects.jakarta.json.stream Provides a streaming API to parse and generate JSON.org.glassfish.json -
-
Uses of JsonParser in jakarta.json
Methods in jakarta.json that return JsonParser Modifier and Type Method Description static JsonParserJson. createParser(InputStream in)Creates a JSON parser from a byte stream.static JsonParserJson. createParser(Reader reader)Creates a JSON parser from a character stream. -
Uses of JsonParser in jakarta.json.spi
Methods in jakarta.json.spi that return JsonParser Modifier and Type Method Description abstract JsonParserJsonProvider. createParser(InputStream in)Creates a JSON parser from the specified byte stream.abstract JsonParserJsonProvider. createParser(Reader reader)Creates a JSON parser from a character stream. -
Uses of JsonParser in jakarta.json.stream
Methods in jakarta.json.stream that return JsonParser Modifier and Type Method Description JsonParserJsonParserFactory. createParser(JsonArray array)Creates a JSON parser from the specified JSON array.JsonParserJsonParserFactory. createParser(JsonObject obj)Creates a JSON parser from the specified JSON object.JsonParserJsonParserFactory. createParser(InputStream in)Creates a JSON parser from the specified byte stream.JsonParserJsonParserFactory. createParser(InputStream in, Charset charset)Creates a JSON parser from the specified byte stream.JsonParserJsonParserFactory. createParser(Reader reader)Creates a JSON parser from a character stream. -
Uses of JsonParser in org.glassfish.json
Classes in org.glassfish.json that implement JsonParser Modifier and Type Class Description classJsonParserImplJSON parser implementation.Methods in org.glassfish.json that return JsonParser Modifier and Type Method Description JsonParserJsonProviderImpl. createParser(InputStream in)JsonParserJsonProviderImpl. createParser(Reader reader)
-