Package | Description |
---|---|
com.fasterxml.jackson.databind |
Basic data binding (mapping) functionality that
allows for reading JSON content into Java Objects (POJOs)
and JSON Trees (
JsonNode ), as well as
writing Java Objects and trees as JSON. |
com.fasterxml.jackson.databind.node |
Contains concrete
JsonNode implementations
Jackson uses for the Tree model. |
Modifier and Type | Method and Description |
---|---|
abstract JsonNodeType |
JsonNode.getNodeType()
Return the type of this node
|
Modifier and Type | Method and Description |
---|---|
JsonNodeType |
ArrayNode.getNodeType() |
JsonNodeType |
BinaryNode.getNodeType() |
JsonNodeType |
BooleanNode.getNodeType() |
JsonNodeType |
MissingNode.getNodeType() |
JsonNodeType |
NullNode.getNodeType() |
JsonNodeType |
NumericNode.getNodeType() |
JsonNodeType |
ObjectNode.getNodeType() |
JsonNodeType |
POJONode.getNodeType() |
JsonNodeType |
TextNode.getNodeType() |
static JsonNodeType |
JsonNodeType.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JsonNodeType[] |
JsonNodeType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Copyright © 2021 JBoss by Red Hat. All rights reserved.