JsonNode objects, in other words, a DOM style parser.See: Description
| Interface | Description |
|---|---|
| JsonNodeBuilder<T extends JsonNode> |
Classes that implement
JsonNodeBuilder provide methods for specifying details of a JsonNode and then constructing it. |
| JsonNodeVisitor |
Called back using the method that matches the type of element being visited.
|
| Class | Description |
|---|---|
| JdomParser | Deprecated
Replaced by
JsonParser. |
| JsonArrayNodeBuilder |
Builder for
JsonNodes representing JSON arrays. |
| JsonField |
A field in a JSON object.
|
| JsonNode |
A node (leaf or otherwise) in a JSON document.
|
| JsonNodeBuilders |
Builders for
JsonNodes. |
| JsonNodeFactories |
Factories for
JsonNodes. |
| JsonNodeSelector<T,U> |
Instances of
JsonNodeSelector extract values from Objects of a specified type. |
| JsonNodeSelectors |
Factories for
JsonNodeSelectors. |
| JsonNumberUtils |
Helper methods for converting JSON number
Strings into Java numeric objects. |
| JsonObjectNodeBuilder |
Builder for
JsonNodes representing JSON objects. |
| JsonStringNode |
JsonNode that explicitly represents a JSON String. |
| Enum | Description |
|---|---|
| JsonNodeType |
Types of
JsonNode. |
| Exception | Description |
|---|---|
| JsonNodeDoesNotMatchJsonNodeSelectorException |
JsonNode objects, in other words, a DOM style parser.