Uses of Class
com.azure.json.JsonReader
Packages that use JsonReader
Package
Description
The Azure JSON library provides interfaces for stream-style JSON reading and writing.
This package contains models for representing JSON as a tree structure.
-
Uses of JsonReader in com.azure.json
Methods in com.azure.json that return JsonReaderModifier and TypeMethodDescriptionabstract JsonReaderJsonReader.bufferObject()Reads and returns the current JSON object theJsonReaderis pointing to.JsonProvider.createReader(byte[] json, JsonOptions options) Creates an instance ofJsonReaderthat reads abyte[].JsonProvider.createReader(InputStream json, JsonOptions options) Creates an instance ofJsonReaderthat reads aInputStream.JsonProvider.createReader(Reader json, JsonOptions options) Creates an instance ofJsonReaderthat reads aReader.JsonProvider.createReader(String json, JsonOptions options) Creates an instance ofJsonReaderthat reads aString.static JsonReaderJsonProviders.createReader(byte[] json) Creates an instance ofJsonReaderthat reads abyte[].static JsonReaderJsonProviders.createReader(byte[] json, JsonOptions options) Creates an instance ofJsonReaderthat reads abyte[].static JsonReaderJsonProviders.createReader(InputStream json) Creates an instance ofJsonReaderthat reads aInputStream.static JsonReaderJsonProviders.createReader(InputStream json, JsonOptions options) Creates an instance ofJsonReaderthat reads aInputStream.static JsonReaderJsonProviders.createReader(Reader json) Creates an instance ofJsonReaderthat reads aReader.static JsonReaderJsonProviders.createReader(Reader json, JsonOptions options) Creates an instance ofJsonReaderthat reads aReader.static JsonReaderJsonProviders.createReader(String json) Creates an instance ofJsonReaderthat reads aString.static JsonReaderJsonProviders.createReader(String json, JsonOptions options) Creates an instance ofJsonReaderthat reads aString.abstract JsonReaderJsonReader.reset()Creates a newJsonReaderreset to the beginning of the JSON stream.Methods in com.azure.json with parameters of type JsonReaderModifier and TypeMethodDescriptionstatic <T extends JsonSerializable<T>>
TJsonSerializable.fromJson(JsonReader jsonReader) Reads a JSON stream into an object.Method parameters in com.azure.json with type arguments of type JsonReaderModifier and TypeMethodDescriptionfinal <T> TJsonReader.getNullable(ReadValueCallback<JsonReader, T> nonNullGetter) Convenience method to read a nullable type.final <T> List<T> JsonReader.readArray(ReadValueCallback<JsonReader, T> elementReaderFunc) Reads a JSON array.JsonReader.readMap(ReadValueCallback<JsonReader, T> valueReaderFunc) Reads a JSON map.final <T> TJsonReader.readObject(ReadValueCallback<JsonReader, T> objectReaderFunc) Reads a JSON object. -
Uses of JsonReader in com.azure.json.models
Methods in com.azure.json.models with parameters of type JsonReaderModifier and TypeMethodDescriptionstatic JsonArrayJsonArray.fromJson(JsonReader jsonReader) Deserializes a JSON array from a JsonReader.static JsonBooleanJsonBoolean.fromJson(JsonReader jsonReader) Deserializes a JSON boolean from a JsonReader.static JsonNullJsonNull.fromJson(JsonReader jsonReader) Deserializes a JSON null from a JsonReader.static JsonNumberJsonNumber.fromJson(JsonReader jsonReader) Deserializes a JSON number from a JsonReader.static JsonObjectJsonObject.fromJson(JsonReader jsonReader) Deserializes a JSON object from a JsonReader.static JsonStringJsonString.fromJson(JsonReader jsonReader) Deserializes a JSON string from a JsonReader.