Uses of Class
com.fasterxml.jackson.databind.JsonNode.OverwriteMode
-
Packages that use JsonNode.OverwriteMode 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 JsonNode.OverwriteMode in com.fasterxml.jackson.databind
Methods in com.fasterxml.jackson.databind that return JsonNode.OverwriteMode Modifier and Type Method Description static JsonNode.OverwriteModeJsonNode.OverwriteMode. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static JsonNode.OverwriteMode[]JsonNode.OverwriteMode. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.fasterxml.jackson.databind with parameters of type JsonNode.OverwriteMode Modifier and Type Method Description ArrayNodeJsonNode. withArray(com.fasterxml.jackson.core.JsonPointer ptr, JsonNode.OverwriteMode overwriteMode, boolean preferIndex)Method that can be called on Object or Array nodes, to access a Array-valued node pointed to by givenJsonPointer, if such a node exists: or if not, an attempt is made to create one and return it.ArrayNodeJsonNode. withArray(java.lang.String expr, JsonNode.OverwriteMode overwriteMode, boolean preferIndex)Short-cut equivalent to:ObjectNodeJsonNode. withObject(com.fasterxml.jackson.core.JsonPointer ptr, JsonNode.OverwriteMode overwriteMode, boolean preferIndex)Method that can be called on Object or Array nodes, to access a Object-valued node pointed to by givenJsonPointer, if such a node exists: or if not, an attempt is made to create one and return it.ObjectNodeJsonNode. withObject(java.lang.String expr, JsonNode.OverwriteMode overwriteMode, boolean preferIndex)Short-cut equivalent to: -
Uses of JsonNode.OverwriteMode in com.fasterxml.jackson.databind.node
Methods in com.fasterxml.jackson.databind.node with parameters of type JsonNode.OverwriteMode Modifier and Type Method Description protected ArrayNodeArrayNode. _withArray(com.fasterxml.jackson.core.JsonPointer origPtr, com.fasterxml.jackson.core.JsonPointer currentPtr, JsonNode.OverwriteMode overwriteMode, boolean preferIndex)protected ArrayNodeBaseJsonNode. _withArray(com.fasterxml.jackson.core.JsonPointer origPtr, com.fasterxml.jackson.core.JsonPointer currentPtr, JsonNode.OverwriteMode overwriteMode, boolean preferIndex)protected ArrayNodeObjectNode. _withArray(com.fasterxml.jackson.core.JsonPointer origPtr, com.fasterxml.jackson.core.JsonPointer currentPtr, JsonNode.OverwriteMode overwriteMode, boolean preferIndex)protected ObjectNodeArrayNode. _withObject(com.fasterxml.jackson.core.JsonPointer origPtr, com.fasterxml.jackson.core.JsonPointer currentPtr, JsonNode.OverwriteMode overwriteMode, boolean preferIndex)protected ObjectNodeBaseJsonNode. _withObject(com.fasterxml.jackson.core.JsonPointer origPtr, com.fasterxml.jackson.core.JsonPointer currentPtr, JsonNode.OverwriteMode overwriteMode, boolean preferIndex)protected abstract ObjectNodeContainerNode. _withObject(com.fasterxml.jackson.core.JsonPointer origPtr, com.fasterxml.jackson.core.JsonPointer currentPtr, JsonNode.OverwriteMode overwriteMode, boolean preferIndex)protected ObjectNodeObjectNode. _withObject(com.fasterxml.jackson.core.JsonPointer origPtr, com.fasterxml.jackson.core.JsonPointer currentPtr, JsonNode.OverwriteMode overwriteMode, boolean preferIndex)protected booleanBaseJsonNode. _withXxxMayReplace(JsonNode node, JsonNode.OverwriteMode overwriteMode)protected voidBaseJsonNode. _withXxxVerifyReplace(com.fasterxml.jackson.core.JsonPointer origPtr, com.fasterxml.jackson.core.JsonPointer currentPtr, JsonNode.OverwriteMode overwriteMode, boolean preferIndex, JsonNode toReplace)ArrayNodeBaseJsonNode. withArray(com.fasterxml.jackson.core.JsonPointer ptr, JsonNode.OverwriteMode overwriteMode, boolean preferIndex)ObjectNodeBaseJsonNode. withObject(com.fasterxml.jackson.core.JsonPointer ptr, JsonNode.OverwriteMode overwriteMode, boolean preferIndex)
-