Uses of Class
com.fasterxml.jackson.databind.JsonNode
Packages that use JsonNode
Package
Description
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.Contains implementation classes of deserialization part of
data binding.
Contains public standard implementations of abstraction that
Jackson uses.
Contains extended support for "external" packages: things that
may or may not be present in runtime environment, but that are
commonly enough used so that explicit support can be added.
Classes needed for JSON schema support (currently just ability
to generate schemas using serialization part of data mapping)
Package that contains classes and interfaces to help implement
custom extension
Modules
(which are registered using
ObjectMapper.registerModule(com.fasterxml.jackson.databind.Module).Contains concrete
JsonNode implementations
Jackson uses for the Tree model.Contains implementation classes of serialization part of
data binding.
Contains implementation classes of serialization part of
data binding.
Utility classes for Mapper package.
-
Uses of JsonNode in com.fasterxml.jackson.databind
Methods in com.fasterxml.jackson.databind with type parameters of type JsonNodeModifier and TypeMethodDescriptionprotected <T extends JsonNode>
TJsonNode._this()abstract <T extends JsonNode>
TJsonNode.deepCopy()Method that can be called to get a node that is guaranteed not to allow changing of this node through mutators on this node or any of its children.<T extends JsonNode>
TJsonNode.require()Method that may be called to verify thatthisnode is NOT so-called "missing node": that is, one for whichisMissingNode()returnstrue.<T extends JsonNode>
TJsonNode.requireNonNull()Method that may be called to verify thatthisnode is neither so-called "missing node" (that is, one for whichisMissingNode()returnstrue) nor "null node" (one for whichisNull()returnstrue).<T extends JsonNode>
TObjectMapper.valueToTree(Object fromValue) Method that is reverse ofObjectMapper.treeToValue(com.fasterxml.jackson.core.TreeNode, java.lang.Class<T>): it will convert given Java value (usually bean) into its equivalent Tree modeJsonNoderepresentation.<T extends JsonNode>
TDeprecated.<T extends JsonNode>
TMethod that works in one of possible ways, depending on whetherexprOrPropertyis a validJsonPointerexpression or not (valid expression is either empty String""or starts with leading slash/character).Methods in com.fasterxml.jackson.databind that return JsonNodeModifier and TypeMethodDescriptionprotected abstract JsonNodeJsonNode._at(JsonPointer ptr) Helper method used by other methods for traversing the next step of given path expression, and returning matching value node if any: if no match,nullis returned.protected final JsonNodeObjectReader._bindAndCloseAsTree(JsonParser p0) protected final JsonNodeObjectReader._bindAsTree(JsonParser p) protected final JsonNodeObjectReader._bindAsTreeOrNull(JsonParser p) Same asObjectReader._bindAsTree(com.fasterxml.jackson.core.JsonParser)except end-of-input is reported by returningnull, not "missing node"protected JsonNodeObjectReader._detectBindAndCloseAsTree(InputStream in) protected JsonNodeObjectMapper._readTreeAndClose(JsonParser p0) Similar toObjectMapper._readMapAndClose(com.fasterxml.jackson.core.JsonParser, com.fasterxml.jackson.databind.JavaType)but specialized forJsonNodereading.final JsonNodeJsonNode.at(JsonPointer ptr) Method for locating node specified by given JSON pointer instances.final JsonNodeConvenience method that is functionally equivalent to:ObjectReader.createArrayNode()ObjectReader.createObjectNode()abstract JsonNodeJsonNode.findParent(String fieldName) Method for finding a JSON Object that contains specified field, within this node or its descendants.abstract JsonNodeMethod similar tofindValue(java.lang.String), but that will return a "missing node" instead of null if no field is found.abstract JsonNodeMethod for finding the first JSON Object field with specified name in this node or its child nodes, and returning value it has.abstract JsonNodeJsonNode.get(int index) Method for accessing value of the specified element of an array node.Method for accessing value of the specified field of an object node.ObjectMapper.missingNode()ObjectReader.missingNode()ObjectMapper.nullNode()ObjectReader.nullNode()abstract JsonNodeJsonNode.path(int index) This method is similar toget(int), except that instead of returning null if no such element exists (due to index being out of range, or this node not being an array), a "missing node" (node that returns true forisMissingNode()) will be returned.abstract JsonNodeThis method is similar toget(String), except that instead of returning null if no such value exists (due to this node not being an object, or object not having value for the specified field), a "missing node" (node that returns true forisMissingNode()) will be returned.DeserializationContext.readTree(JsonParser p) Convenience method for reading the value that passedJsonParserpoints to as aJsonNode.ObjectMapper.readTree(byte[] content) Same asObjectMapper.readTree(InputStream)except content read from passed-in byte array.ObjectMapper.readTree(byte[] content, int offset, int len) Same asObjectMapper.readTree(InputStream)except content read from passed-in byte array.Same asObjectMapper.readTree(InputStream)except content read from passed-inFile.ObjectMapper.readTree(InputStream in) Method to deserialize JSON content as tree expressed using set ofJsonNodeinstances.Same asObjectMapper.readTree(InputStream)except content accessed through passed-inReaderSame asObjectMapper.readTree(InputStream)except content read from passed-inStringSame asObjectMapper.readTree(InputStream)except content read from passed-inURL.ObjectReader.readTree(byte[] json) Same asObjectReader.readTree(InputStream)except content read from passed-in byte array.ObjectReader.readTree(byte[] json, int offset, int len) Same asObjectReader.readTree(InputStream)except content read from passed-in byte array.Same asObjectReader.readTree(InputStream)except content read using passed-inDataInput.ObjectReader.readTree(InputStream src) Method that reads content from given input source, using configuration of this reader, and binds it as JSON Tree.Same asObjectReader.readTree(InputStream)except content accessed through passed-inReaderSame asObjectReader.readTree(InputStream)except content read from passed-inStringJsonNode.required(int index) Method is functionally equivalent topath(index).required()and can be used to check that this node is anArrayNode(that is, represents JSON Array value) and has value for specifiedindex(but note that value may be explicit JSON null value).Method is functionally equivalent topath(fieldName).required()and can be used to check that this node is anObjectNode(that is, represents JSON Object value) and has value for specified property with keyfieldName(but note that value may be explicit JSON null value).final JsonNodeJsonNode.requiredAt(JsonPointer path) Method is functionally equivalent toat(path).required()and can be used to check that there is an actual value node at specifiedJsonPointerstarting fromthisnode (but note that value may be explicit JSON null value).JsonNode.requiredAt(String pathExpr) Method is functionally equivalent toat(pathExpr).required()and can be used to check that there is an actual value node at specifiedJsonPointerstarting fromthisnode (but note that value may be explicit JSON null value).Methods in com.fasterxml.jackson.databind that return types with arguments of type JsonNodeModifier and TypeMethodDescriptionJsonNode.elements()Method for accessing all value nodes of this Node, iff this node is a JSON Array or Object node.JsonNode.fields()JsonNode.findParents(String fieldName) Method for finding a JSON Object that contains specified field, within this node or its descendants.JsonNode.findParents(String fieldName, List<JsonNode> foundSoFar) JsonNode.findValues(String fieldName) Method for finding JSON Object fields with specified name -- both immediate child values and descendants -- and returning found ones as aList.JsonNode.findValues(String fieldName, List<JsonNode> foundSoFar) JsonNode.iterator()Same as callingelements(); implemented so that convenience "for-each" loop can be used for looping over elements of JSON Array constructs.JsonNode.properties()Accessor that will return properties ofObjectNodesimilar to howMap.entrySet()works; for other node types will return emptySet.Methods in com.fasterxml.jackson.databind with parameters of type JsonNodeModifier and TypeMethodDescriptionbooleanJsonNode.equals(Comparator<JsonNode> comparator, JsonNode other) Entry method for invoking customizable comparison, using passed-inComparatorobject.<T> TDeserializationContext.readTreeAsValue(JsonNode n, JavaType targetType) Same asDeserializationContext.readTreeAsValue(JsonNode, Class)but will fully resolvedJavaTypeastargetType<T> TDeserializationContext.readTreeAsValue(JsonNode n, Class<T> targetType) Helper method similar toObjectReader.treeToValue(TreeNode, Class)which will read contents of given tree (JsonNode) and bind them into specified target type.<T> TConvenience method for converting results from given JSON tree into given value type.<T> TSame asObjectReader.readValue(JsonNode)except that target value type overridden asvalueTypevoidObjectMapper.writeTree(JsonGenerator g, JsonNode rootNode) Method to serialize given JSON Tree, using generator provided.Method parameters in com.fasterxml.jackson.databind with type arguments of type JsonNodeModifier and TypeMethodDescriptionbooleanJsonNode.equals(Comparator<JsonNode> comparator, JsonNode other) Entry method for invoking customizable comparison, using passed-inComparatorobject.JsonNode.findParents(String fieldName, List<JsonNode> foundSoFar) JsonNode.findValues(String fieldName, List<JsonNode> foundSoFar) -
Uses of JsonNode in com.fasterxml.jackson.databind.deser
Methods in com.fasterxml.jackson.databind.deser with parameters of type JsonNodeModifier and TypeMethodDescriptionprotected voidSettableAnyProperty.JsonNodeFieldAnyProperty.setProperty(Object instance, String propName, JsonNode value) Method parameters in com.fasterxml.jackson.databind.deser with type arguments of type JsonNodeModifier and TypeMethodDescriptionprotected JsonDeserializer<?>BasicDeserializerFactory._findCustomTreeNodeDeserializer(Class<? extends JsonNode> type, DeserializationConfig config, BeanDescription beanDesc) Deserializers.Base.findTreeNodeDeserializer(Class<? extends JsonNode> nodeType, DeserializationConfig config, BeanDescription beanDesc) Deserializers.findTreeNodeDeserializer(Class<? extends JsonNode> nodeType, DeserializationConfig config, BeanDescription beanDesc) Method called to locate deserializer for specified JSON tree node type. -
Uses of JsonNode in com.fasterxml.jackson.databind.deser.std
Methods in com.fasterxml.jackson.databind.deser.std that return JsonNodeModifier and TypeMethodDescriptionJsonNodeDeserializer.deserialize(JsonParser p, DeserializationContext ctxt) Implementation that will produce types of any JSON nodes; not just one deserializer is registered to handle (in case of more specialized handler).JsonNodeDeserializer.getNullValue(DeserializationContext ctxt) Methods in com.fasterxml.jackson.databind.deser.std that return types with arguments of type JsonNodeModifier and TypeMethodDescriptionstatic JsonDeserializer<? extends JsonNode>JsonNodeDeserializer.getDeserializer(Class<?> nodeClass) Factory method for accessing deserializer for specific node typeMethods in com.fasterxml.jackson.databind.deser.std with parameters of type JsonNodeModifier and TypeMethodDescriptionabstract TStdNodeBasedDeserializer.convert(JsonNode root, DeserializationContext ctxt) StdNodeBasedDeserializer.convert(JsonNode root, DeserializationContext ctxt, T newValue) Facilitates usage withObjectMapper.readerForUpdating(Object)andStdNodeBasedDeserializer.deserialize(JsonParser, DeserializationContext, Object)by eliminating the need to manually convert the value to aJsonNode. -
Uses of JsonNode in com.fasterxml.jackson.databind.ext
Methods in com.fasterxml.jackson.databind.ext that return JsonNodeModifier and TypeMethodDescriptionDOMSerializer.getSchema(SerializerProvider provider, Type typeHint) Deprecated.Since 2.15 -
Uses of JsonNode in com.fasterxml.jackson.databind.jsonschema
Methods in com.fasterxml.jackson.databind.jsonschema that return JsonNodeModifier and TypeMethodDescriptionstatic JsonNodeJsonSchema.getDefaultSchemaNode()Deprecated.Get the default schema node.SchemaAware.getSchema(SerializerProvider provider, Type typeHint) Deprecated.Get the representation of the schema to which this serializer will conform.SchemaAware.getSchema(SerializerProvider provider, Type typeHint, boolean isOptional) Deprecated.Get the representation of the schema to which this serializer will conform. -
Uses of JsonNode in com.fasterxml.jackson.databind.module
Method parameters in com.fasterxml.jackson.databind.module with type arguments of type JsonNodeModifier and TypeMethodDescriptionSimpleDeserializers.findTreeNodeDeserializer(Class<? extends JsonNode> nodeType, DeserializationConfig config, BeanDescription beanDesc) -
Uses of JsonNode in com.fasterxml.jackson.databind.node
Subclasses of JsonNode in com.fasterxml.jackson.databind.nodeModifier and TypeClassDescriptionclassNode class that represents Arrays mapped from JSON content.classAbstract base class common to all standardJsonNodeimplementations.classNumeric node that contains simple 64-bit integer values.classValue node that contains Base64 encoded binary value, which will be output and stored as Json String value.classThis concrete value class is used to contain boolean (true / false) values.classContainerNode<T extends ContainerNode<T>>This intermediate base class is used for all container nodes, specifically, array and object nodes.classNumeric node that contains values that do not fit in simple integer (int, long) or floating point (double) values.classNumeric node that contains 64-bit ("double precision") floating point values simple 32-bit integer values.classJsonNodeimplementation for efficiently containing 32-bit `float` values.classNumeric node that contains simple 32-bit integer values.classNumeric node that contains simple 64-bit integer values.final classThis singleton node class is generated to denote "missing nodes" along paths that do not exist.classThis singleton value class is used to contain explicit JSON null value.classIntermediate value node used for numeric nodes.classNode that maps to JSON Object structures in JSON content.classValue node that contains a wrapped POJO, to be serialized as a JSON constructed through data mapping (usually done by callingObjectMapper).classNumeric node that contains simple 16-bit integer values.classValue node that contains a text value.classThis intermediate base class is used for all leaf nodes, that is, all non-container (array or object) nodes, except for the "missing node".Fields in com.fasterxml.jackson.databind.node with type parameters of type JsonNodeMethods in com.fasterxml.jackson.databind.node with type parameters of type JsonNodeModifier and TypeMethodDescription<T extends JsonNode>
TMissingNode.deepCopy()<T extends JsonNode>
TValueNode.deepCopy()All current value nodes are immutable, so we can just return them as is.<T extends JsonNode>
TMethod that will set specified property, replacing old value, if any.<T extends JsonNode>
TObjectNode.setAll(ObjectNode other) Method for adding all properties of the given Object, overriding any existing values for those properties.<T extends JsonNode>
TMethod for adding given properties to this object node, overriding any existing values for those properties.<T extends JsonNode>
TMethod for removing property from this ObjectNode, and returning instance after removal.<T extends JsonNode>
TObjectNode.without(Collection<String> propertyNames) Method for removing specified field properties out of this ObjectNode.Methods in com.fasterxml.jackson.databind.node that return JsonNodeModifier and TypeMethodDescriptionprotected JsonNodeArrayNode._at(JsonPointer ptr) protected JsonNodeObjectNode._at(JsonPointer ptr) protected JsonNodeValueNode._at(JsonPointer ptr) protected JsonNodeTreeTraversingParser.currentNode()protected JsonNodeTreeTraversingParser.currentNumericNode()final JsonNodefinal JsonNodeArrayNode.get(int index) abstract JsonNodeContainerNode.get(int index) abstract JsonNodeObjectNode.get(int index) final JsonNodeValueNode.get(int index) final JsonNodeContainerNode.missingNode()JsonNodeFactory.missingNode()ArrayNode.path(int index) ObjectNode.path(int index) final JsonNodeValueNode.path(int index) final JsonNodeDeprecated.Since 2.4 use eitherObjectNode.set(String,JsonNode)orObjectNode.replace(String,JsonNode),ObjectNode.putAll(ObjectNode other) Deprecated.Since 2.4 useObjectNode.setAll(ObjectNode),Deprecated.Since 2.4 useObjectNode.setAll(Map),ObjectNode.putIfAbsent(String propertyName, JsonNode value) Method that will set value of specified property if (and only if) it had no set value previously.ArrayNode.remove(int index) Method for removing an entry from this ArrayNode.Method for removing a property from thisObjectNode.Method for replacing value of specific property with passed value, and returning value (or null if none).MissingNode.require()ArrayNode.required(int index) BaseJsonNode.required(int index) MissingNode.requireNonNull()NullNode.requireNonNull()Method that will set specified field, replacing old value, if any.Methods in com.fasterxml.jackson.databind.node that return types with arguments of type JsonNodeModifier and TypeMethodDescriptionObjectNode._contentsToSerialize(SerializerProvider ctxt) Helper method for encapsulating details of accessing child node entries to serialize.ArrayNode.elements()Method for accessing all value nodes of this Node, iff this node is a JSON Array or Object node.ObjectNode.elements()ObjectNode.fields()Method to use for accessing all properties (with both names and values) of this JSON Object.ArrayNode.findParents(String fieldName, List<JsonNode> foundSoFar) ObjectNode.findParents(String propertyName, List<JsonNode> foundSoFar) ValueNode.findParents(String fieldName, List<JsonNode> foundSoFar) ArrayNode.findValues(String fieldName, List<JsonNode> foundSoFar) ObjectNode.findValues(String propertyName, List<JsonNode> foundSoFar) ValueNode.findValues(String fieldName, List<JsonNode> foundSoFar) ObjectNode.properties()Method to use for accessing all properties (with both names and values) of this JSON Object.Methods in com.fasterxml.jackson.databind.node with parameters of type JsonNodeModifier and TypeMethodDescriptionprotected ArrayNodeprotected ArrayNodeprotected ObjectNodeprotected ArrayNodeprotected booleanBaseJsonNode._withXxxMayReplace(JsonNode node, JsonNode.OverwriteMode overwriteMode) protected voidArrayNode._withXxxSetArrayElement(int index, JsonNode value) protected voidBaseJsonNode._withXxxVerifyReplace(JsonPointer origPtr, JsonPointer currentPtr, JsonNode.OverwriteMode overwriteMode, boolean preferIndex, JsonNode toReplace) Method for adding specified node at the end of this array.booleanArrayNode.equals(Comparator<JsonNode> comparator, JsonNode o) booleanObjectNode.equals(Comparator<JsonNode> comparator, JsonNode o) Method for inserting specified child node as an element of this Array.Deprecated.Since 2.4 use eitherObjectNode.set(String,JsonNode)orObjectNode.replace(String,JsonNode),ObjectNode.putIfAbsent(String propertyName, JsonNode value) Method that will set value of specified property if (and only if) it had no set value previously.Method for replacing value of specific property with passed value, and returning value (or null if none).Method that will set specified field, replacing old value, if any.<T extends JsonNode>
TMethod that will set specified property, replacing old value, if any.Method parameters in com.fasterxml.jackson.databind.node with type arguments of type JsonNodeModifier and TypeMethodDescriptionArrayNode.addAll(Collection<? extends JsonNode> nodes) Method for adding given nodes as child nodes of this array node.booleanArrayNode.equals(Comparator<JsonNode> comparator, JsonNode o) booleanObjectNode.equals(Comparator<JsonNode> comparator, JsonNode o) ArrayNode.findParents(String fieldName, List<JsonNode> foundSoFar) ObjectNode.findParents(String propertyName, List<JsonNode> foundSoFar) ValueNode.findParents(String fieldName, List<JsonNode> foundSoFar) ArrayNode.findValues(String fieldName, List<JsonNode> foundSoFar) ObjectNode.findValues(String propertyName, List<JsonNode> foundSoFar) ValueNode.findValues(String fieldName, List<JsonNode> foundSoFar) Deprecated.Since 2.4 useObjectNode.setAll(Map),<T extends JsonNode>
TMethod for adding given properties to this object node, overriding any existing values for those properties.Constructors in com.fasterxml.jackson.databind.node with parameters of type JsonNodeConstructor parameters in com.fasterxml.jackson.databind.node with type arguments of type JsonNodeModifierConstructorDescriptionArrayNode(JsonNodeFactory nf, List<JsonNode> children) ObjectNode(JsonNodeFactory nc, Map<String, JsonNode> children) -
Uses of JsonNode in com.fasterxml.jackson.databind.ser
Methods in com.fasterxml.jackson.databind.ser with parameters of type JsonNodeModifier and TypeMethodDescriptionprotected voidBeanPropertyWriter._depositSchemaProperty(ObjectNode propertiesNode, JsonNode schemaNode) -
Uses of JsonNode in com.fasterxml.jackson.databind.ser.impl
Methods in com.fasterxml.jackson.databind.ser.impl that return JsonNodeModifier and TypeMethodDescriptionprotected JsonNodeIndexedStringListSerializer.contentSchema()protected JsonNodeStringCollectionSerializer.contentSchema()StringArraySerializer.getSchema(SerializerProvider provider, Type typeHint) Deprecated.Since 2.15Methods in com.fasterxml.jackson.databind.ser.impl with parameters of type JsonNodeModifier and TypeMethodDescriptionprotected voidUnwrappingBeanPropertyWriter._depositSchemaProperty(ObjectNode propertiesNode, JsonNode schemaNode) -
Uses of JsonNode in com.fasterxml.jackson.databind.ser.std
Methods in com.fasterxml.jackson.databind.ser.std that return JsonNodeModifier and TypeMethodDescriptionprotected abstract JsonNodeStaticListSerializerBase.contentSchema()AsArraySerializerBase.getSchema(SerializerProvider provider, Type typeHint) Deprecated.Since 2.15BeanSerializerBase.getSchema(SerializerProvider provider, Type typeHint) Deprecated.BooleanSerializer.getSchema(SerializerProvider provider, Type typeHint) Deprecated.Since 2.15ByteArraySerializer.getSchema(SerializerProvider provider, Type typeHint) Deprecated.Since 2.15ClassSerializer.getSchema(SerializerProvider provider, Type typeHint) Deprecated.Since 2.15DateTimeSerializerBase.getSchema(SerializerProvider serializers, Type typeHint) Deprecated.Since 2.15EnumSerializer.getSchema(SerializerProvider provider, Type typeHint) Deprecated.Since 2.15FileSerializer.getSchema(SerializerProvider provider, Type typeHint) Deprecated.Since 2.15JsonValueSerializer.getSchema(SerializerProvider ctxt, Type typeHint) Deprecated.Since 2.15MapSerializer.getSchema(SerializerProvider provider, Type typeHint) Deprecated.Since 2.15NullSerializer.getSchema(SerializerProvider provider, Type typeHint) Deprecated.Since 2.15NumberSerializer.getSchema(SerializerProvider provider, Type typeHint) Deprecated.Since 2.15NumberSerializers.Base.getSchema(SerializerProvider provider, Type typeHint) Deprecated.Since 2.15RawSerializer.getSchema(SerializerProvider provider, Type typeHint) Deprecated.Since 2.15SqlTimeSerializer.getSchema(SerializerProvider provider, Type typeHint) Deprecated.Since 2.15StaticListSerializerBase.getSchema(SerializerProvider provider, Type typeHint) Deprecated.Since 2.15StdArraySerializers.BooleanArraySerializer.getSchema(SerializerProvider provider, Type typeHint) Deprecated.Since 2.15StdArraySerializers.CharArraySerializer.getSchema(SerializerProvider provider, Type typeHint) Deprecated.Since 2.15StdArraySerializers.DoubleArraySerializer.getSchema(SerializerProvider provider, Type typeHint) Deprecated.Since 2.15StdArraySerializers.FloatArraySerializer.getSchema(SerializerProvider provider, Type typeHint) Deprecated.Since 2.15StdArraySerializers.IntArraySerializer.getSchema(SerializerProvider provider, Type typeHint) Deprecated.Since 2.15StdArraySerializers.LongArraySerializer.getSchema(SerializerProvider provider, Type typeHint) Deprecated.Since 2.15StdArraySerializers.ShortArraySerializer.getSchema(SerializerProvider provider, Type typeHint) Deprecated.Since 2.15StdDelegatingSerializer.getSchema(SerializerProvider provider, Type typeHint) Deprecated.Since 2.15StdDelegatingSerializer.getSchema(SerializerProvider provider, Type typeHint, boolean isOptional) Deprecated.Since 2.15StdJdkSerializers.AtomicBooleanSerializer.getSchema(SerializerProvider provider, Type typeHint) Deprecated.Since 2.15StdJdkSerializers.AtomicIntegerSerializer.getSchema(SerializerProvider provider, Type typeHint) Deprecated.Since 2.15StdJdkSerializers.AtomicLongSerializer.getSchema(SerializerProvider provider, Type typeHint) Deprecated.Since 2.15StdScalarSerializer.getSchema(SerializerProvider provider, Type typeHint) Deprecated.Since 2.15StdSerializer.getSchema(SerializerProvider provider, Type typeHint) Deprecated.Since 2.15, we recommend use of external JSON Schema generator moduleStdSerializer.getSchema(SerializerProvider provider, Type typeHint, boolean isOptional) Deprecated.Since 2.15, we recommend use of external JSON Schema generator moduleStringSerializer.getSchema(SerializerProvider provider, Type typeHint) Deprecated.Since 2.15ToEmptyObjectSerializer.getSchema(SerializerProvider provider, Type typeHint) Deprecated.Since 2.15TokenBufferSerializer.getSchema(SerializerProvider provider, Type typeHint) Deprecated.Since 2.15ToStringSerializerBase.getSchema(SerializerProvider provider, Type typeHint) Deprecated.Since 2.15 -
Uses of JsonNode in com.fasterxml.jackson.databind.util
Methods in com.fasterxml.jackson.databind.util that return types with arguments of type JsonNodeModifier and TypeMethodDescriptionJacksonCollectors.toArrayNode()JacksonCollectors.toArrayNode(JsonNodeCreator nodeCreator) -
Uses of JsonNode in com.fasterxml.jackson.module.jakarta.xmlbind.ser
Methods in com.fasterxml.jackson.module.jakarta.xmlbind.ser that return JsonNodeModifier and TypeMethodDescriptionDataHandlerSerializer.getSchema(SerializerProvider provider, Type typeHint) Deprecated.
withObject(String)instead