Uses of Interface
com.azure.core.experimental.serializer.JsonNode
Packages that use JsonNode
Package
Description
Package containing experimental serializer interfaces.
-
Uses of JsonNode in com.azure.core.experimental.serializer
Subinterfaces of JsonNode in com.azure.core.experimental.serializerModifier and TypeInterfaceDescriptioninterfaceInterface that represents a JSON array.interfaceInterface that represents a JSON null.interfaceInterface that represents a JSON object.interfaceInterface that represents a JSON value.Methods in com.azure.core.experimental.serializer that return JsonNodeModifier and TypeMethodDescriptionJsonArray.get(int index) Gets theJsonNodeat the given index of the array.Gets theJsonNodefield with the specified name in the object.JsonArray.remove(int index) Removes theJsonNodeat the specified index of the array.Removes theJsonNodewith the specified name from the object.Replaces theJsonNodeat the specified index with a new node.Sets theJsonNodefield with the specified name with a new node value.JsonSerializer.toTree(InputStream stream) Reads a JSON stream into its JSON tree representation.Writes an object into its JSON tree representation.Methods in com.azure.core.experimental.serializer that return types with arguments of type JsonNodeModifier and TypeMethodDescriptionJsonArray.elements()AStreamthat iterates all elements in the array.JsonObject.fields()AStreamiterating over all fields in the object.JsonSerializer.toTreeAsync(InputStream stream) Reads a JSON stream into its JSON tree representation.JsonSerializer.toTreeAsync(Object value) Writes an object into its JSON tree representation.Methods in com.azure.core.experimental.serializer with parameters of type JsonNodeModifier and TypeMethodDescriptionAdds aJsonNodeto the end of this array.<T> TJsonSerializer.deserializeTree(JsonNode jsonNode, TypeReference<T> typeReference) Reads a JSON tree into its object representation.<T> Mono<T>JsonSerializer.deserializeTreeAsync(JsonNode jsonNode, TypeReference<T> typeReference) Reads a JSON tree into its object representation.Puts aJsonNodefield with the specified name into the object.voidJsonSerializer.serializeTree(OutputStream stream, JsonNode jsonNode) Writes a JSON tree into a stream.JsonSerializer.serializeTreeAsync(OutputStream stream, JsonNode jsonNode) Writes a JSON tree into a stream.Replaces theJsonNodeat the specified index with a new node.Sets theJsonNodefield with the specified name with a new node value.