Uses of Interface
software.amazon.awssdk.protocols.jsoncore.JsonNode
Packages that use JsonNode
Package
Description
-
Uses of JsonNode in software.amazon.awssdk.protocols.jsoncore
Methods in software.amazon.awssdk.protocols.jsoncore that return JsonNodeModifier and TypeMethodDescriptionstatic JsonNodeJsonNode.emptyObjectNode()Return an empty object node.JsonValueNodeFactory.node(software.amazon.awssdk.thirdparty.jackson.core.JsonParser parser, software.amazon.awssdk.thirdparty.jackson.core.JsonToken token) JsonNodeParser.parse(byte[] content) Parse the providedbyte[]into aJsonNode.JsonNodeParser.parse(InputStream content) Parse the providedInputStreaminto aJsonNode.Methods in software.amazon.awssdk.protocols.jsoncore that return types with arguments of type JsonNodeModifier and TypeMethodDescriptionJsonNode.asArray()WhenisArray()is true, this returns the array associated with this node.JsonNode.asObject()WhenisObject()is true, this returns the object associated with this node.WhenisObject()is true, this will return the result ofOptional.ofNullable(asObject().get(child)).JsonNode.index(int child) WhenisArray()is true, this will return the result ofasArray().get(child)if child is within bounds.Method parameters in software.amazon.awssdk.protocols.jsoncore with type arguments of type JsonNodeModifier and TypeMethodDescriptionJsonNodeVisitor.visitArray(List<JsonNode> array) Invoked ifvisit(JsonNodeVisitor)is invoked on an array JSON node.JsonNodeVisitor.visitObject(Map<String, JsonNode> object) Invoked ifvisit(JsonNodeVisitor)is invoked on an object JSON node. -
Uses of JsonNode in software.amazon.awssdk.protocols.jsoncore.internal
Classes in software.amazon.awssdk.protocols.jsoncore.internal that implement JsonNodeModifier and TypeClassDescriptionfinal classAn arrayJsonNode.final classA booleanJsonNode.final classAn embedded objectJsonNode.final classA nullJsonNode.final classA numericJsonNode.final classAn objectJsonNode.final classA stringJsonNode.Methods in software.amazon.awssdk.protocols.jsoncore.internal that return types with arguments of type JsonNodeModifier and TypeMethodDescriptionArrayJsonNode.asArray()BooleanJsonNode.asArray()EmbeddedObjectJsonNode.asArray()NullJsonNode.asArray()NumberJsonNode.asArray()ObjectJsonNode.asArray()StringJsonNode.asArray()ArrayJsonNode.asObject()BooleanJsonNode.asObject()EmbeddedObjectJsonNode.asObject()NullJsonNode.asObject()NumberJsonNode.asObject()ObjectJsonNode.asObject()StringJsonNode.asObject()ArrayJsonNode.index(int child) Constructor parameters in software.amazon.awssdk.protocols.jsoncore.internal with type arguments of type JsonNodeModifierConstructorDescriptionArrayJsonNode(List<JsonNode> value) ObjectJsonNode(Map<String, JsonNode> value)