Uses of Class
com.fasterxml.jackson.databind.node.JsonNodeType
-
Packages that use JsonNodeType 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 concreteJsonNodeimplementations Jackson uses for the Tree model. -
-
Uses of JsonNodeType in com.fasterxml.jackson.databind
Methods in com.fasterxml.jackson.databind that return JsonNodeType Modifier and Type Method Description abstract JsonNodeTypeJsonNode. getNodeType()Return the type of this node -
Uses of JsonNodeType in com.fasterxml.jackson.databind.node
Methods in com.fasterxml.jackson.databind.node that return JsonNodeType Modifier and Type Method Description JsonNodeTypeArrayNode. getNodeType()JsonNodeTypeBinaryNode. getNodeType()JsonNodeTypeBooleanNode. getNodeType()JsonNodeTypeMissingNode. getNodeType()JsonNodeTypeNullNode. getNodeType()JsonNodeTypeNumericNode. getNodeType()JsonNodeTypeObjectNode. getNodeType()JsonNodeTypePOJONode. getNodeType()JsonNodeTypeTextNode. getNodeType()static JsonNodeTypeJsonNodeType. 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.
-