Uses of Class
com.azure.json.JsonReader
-
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.