JsonNode
.JsonNode.isArray()
is true, this returns the array associated with this node.JsonNode.isBoolean()
is true, this returns the boolean associated with this node.JsonNode.isEmbeddedObject()
is true, this returns the embedded object associated with this node.JsonNode.isNumber()
is true, this returns the number associated with this node.JsonNode.isObject()
is true, this returns the object associated with this node.JsonNode.isString()
, is true, this returns the string associated with this node.JsonNode
.JsonNodeParser
based on the current configuration of this builder.JsonNodeParser
based on the current configuration of this builder.JsonFactory
used for JsonNodeParser.create()
or if a factory is not configured via
JsonNodeParser.Builder.jsonFactory(JsonFactory)
.JsonNode
.JsonNode.isObject()
is true, this will return the result of Optional.ofNullable(asObject().get(child))
.JsonNode.isArray()
is true, this will return the result of asArray().get(child)
if child is within bounds.JsonFactory
implementation to be used when parsing the input.JsonFactory
implementation to be used when parsing the input.JsonNode
.JsonNodeParser
.JsonNode
to a new type.JsonWriter
.JsonNode
.JsonNode
.JsonNode
.InputStream
into a JsonNode
.byte[]
into a JsonNode
.JsonNodeParser
for generating a JsonNode
from a JSON document.JsonNodeParser.Builder
for generating a JsonNode
from a JSON document.JsonNode
.JsonNode.isString()
, JsonNode.isBoolean()
, or JsonNode.isNumber()
is true, this will return the value of this node
as a textual string.JsonNode.visit(JsonNodeVisitor)
is invoked on an array JSON node.JsonNode.visit(JsonNodeVisitor)
is invoked on a boolean JSON node.JsonNode.visit(JsonNodeVisitor)
is invoked on an embedded object JSON node.JsonNode.visit(JsonNodeVisitor)
is invoked on a null JSON node.JsonNode.visit(JsonNodeVisitor)
is invoked on a number JSON node.JsonNode.visit(JsonNodeVisitor)
is invoked on an object JSON node.JsonNode.visit(JsonNodeVisitor)
is invoked on a string JSON node.Copyright © 2023. All rights reserved.