Uses of Interface
com.azure.core.experimental.serializer.JsonNode
-
Packages that use JsonNode Package Description com.azure.core.experimental.serializer Package containing experimental serializer interfaces. -
-
Uses of JsonNode in com.azure.core.experimental.serializer
Subinterfaces of JsonNode in com.azure.core.experimental.serializer Modifier and Type Interface Description interfaceJsonArrayInterface that represents a JSON array.interfaceJsonNullInterface that represents a JSON null.interfaceJsonObjectInterface that represents a JSON object.interfaceJsonPrimitiveInterface that represents a JSON value.Methods in com.azure.core.experimental.serializer that return JsonNode Modifier and Type Method Description JsonNodeJsonArray. get(int index)Gets theJsonNodeat the given index of the array.JsonNodeJsonObject. get(String name)Gets theJsonNodefield with the specified name in the object.JsonNodeJsonArray. remove(int index)Removes theJsonNodeat the specified index of the array.JsonNodeJsonObject. remove(String name)Removes theJsonNodewith the specified name from the object.JsonNodeJsonArray. set(int index, JsonNode jsonNode)Replaces theJsonNodeat the specified index with a new node.JsonNodeJsonObject. set(String name, JsonNode jsonNode)Sets theJsonNodefield with the specified name with a new node value.JsonNodeJsonSerializer. toTree(InputStream stream)Reads a JSON stream into its JSON tree representation.JsonNodeJsonSerializer. toTree(Object value)Writes an object into its JSON tree representation.Methods in com.azure.core.experimental.serializer that return types with arguments of type JsonNode Modifier and Type Method Description Stream<JsonNode>JsonArray. elements()Stream<Map.Entry<String,JsonNode>>JsonObject. fields()Mono<JsonNode>JsonSerializer. toTreeAsync(InputStream stream)Reads a JSON stream into its JSON tree representation.Mono<JsonNode>JsonSerializer. toTreeAsync(Object value)Writes an object into its JSON tree representation.Methods in com.azure.core.experimental.serializer with parameters of type JsonNode Modifier and Type Method Description JsonArrayJsonArray. add(JsonNode jsonNode)Adds 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.JsonObjectJsonObject. put(String name, JsonNode jsonNode)Puts aJsonNodefield with the specified name into the object.voidJsonSerializer. serializeTree(OutputStream stream, JsonNode jsonNode)Writes a JSON tree into a stream.Mono<Void>JsonSerializer. serializeTreeAsync(OutputStream stream, JsonNode jsonNode)Writes a JSON tree into a stream.JsonNodeJsonArray. set(int index, JsonNode jsonNode)Replaces theJsonNodeat the specified index with a new node.JsonNodeJsonObject. set(String name, JsonNode jsonNode)Sets theJsonNodefield with the specified name with a new node value.
-