Uses of Class
com.fasterxml.jackson.databind.JsonNode
-
Packages that use JsonNode 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.deser Contains implementation classes of deserialization part of data binding.com.fasterxml.jackson.databind.deser.std Contains public standard implementations of abstraction that Jackson uses.com.fasterxml.jackson.databind.ext 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.com.fasterxml.jackson.databind.jsonschema Classes needed for JSON schema support (currently just ability to generate schemas using serialization part of data mapping)com.fasterxml.jackson.databind.module Package that contains classes and interfaces to help implement custom extensionModules (which are registered usingObjectMapper.registerModule(com.fasterxml.jackson.databind.Module).com.fasterxml.jackson.databind.node Contains concreteJsonNodeimplementations Jackson uses for the Tree model.com.fasterxml.jackson.databind.ser Contains implementation classes of serialization part of data binding.com.fasterxml.jackson.databind.ser.impl Contains implementation classes of serialization part of data binding.com.fasterxml.jackson.databind.ser.std -
-
Uses of JsonNode in com.fasterxml.jackson.databind
Methods in com.fasterxml.jackson.databind with type parameters of type JsonNode Modifier and Type Method Description protected <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)Reverse ofObjectMapper.treeToValue(com.fasterxml.jackson.core.TreeNode, java.lang.Class<T>); given a value (usually bean), will construct equivalent JSON Tree representation.<T extends JsonNode>
TJsonNode. with(String propertyName)Method that can be called on Object nodes, to access a property that has Object value; or if no such property exists, to create, add and return such Object node.<T extends JsonNode>
TJsonNode. withArray(String propertyName)Method that can be called on Object nodes, to access a property that hasArrayvalue; or if no such property exists, to create, add and return such Array node.Methods in com.fasterxml.jackson.databind that return JsonNode Modifier and Type Method Description protected abstract JsonNodeJsonNode. _at(com.fasterxml.jackson.core.JsonPointer ptr)protected JsonNodeObjectReader. _bindAndCloseAsTree(com.fasterxml.jackson.core.JsonParser p0)protected JsonNodeObjectReader. _bindAsTree(com.fasterxml.jackson.core.JsonParser p)protected JsonNodeObjectReader. _bindAsTreeOrNull(com.fasterxml.jackson.core.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(com.fasterxml.jackson.core.JsonParser p0)Similar toObjectMapper._readMapAndClose(com.fasterxml.jackson.core.JsonParser, com.fasterxml.jackson.databind.JavaType)but specialized forJsonNodereading.JsonNodeJsonNode. at(com.fasterxml.jackson.core.JsonPointer ptr)Method for locating node specified by given JSON pointer instances.JsonNodeJsonNode. at(String jsonPtrExpr)Convenience method that is functionally equivalent to:JsonNodeObjectReader. createArrayNode()JsonNodeObjectReader. createObjectNode()abstract JsonNodeJsonNode. findParent(String fieldName)Method for finding a JSON Object that contains specified field, within this node or its descendants.abstract JsonNodeJsonNode. findPath(String fieldName)Method similar tofindValue(java.lang.String), but that will return a "missing node" instead of null if no field is found.abstract JsonNodeJsonNode. findValue(String fieldName)Method for finding a 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.JsonNodeJsonNode. get(String fieldName)Method for accessing value of the specified field of an object node.JsonNodeObjectMapper. missingNode()JsonNodeObjectReader. missingNode()JsonNodeObjectMapper. nullNode()JsonNodeObjectReader. 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 JsonNodeJsonNode. path(String fieldName)This 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.JsonNodeDeserializationContext. readTree(com.fasterxml.jackson.core.JsonParser p)JsonNodeObjectMapper. readTree(byte[] content)Same asObjectMapper.readTree(InputStream)except content read from passed-in byte array.JsonNodeObjectMapper. readTree(byte[] content, int offset, int len)Same asObjectMapper.readTree(InputStream)except content read from passed-in byte array.JsonNodeObjectMapper. readTree(File file)Same asObjectMapper.readTree(InputStream)except content read from passed-inFile.JsonNodeObjectMapper. readTree(InputStream in)Method to deserialize JSON content as tree expressed using set ofJsonNodeinstances.JsonNodeObjectMapper. readTree(Reader r)Same asObjectMapper.readTree(InputStream)except content accessed through passed-inReaderJsonNodeObjectMapper. readTree(String content)Same asObjectMapper.readTree(InputStream)except content read from passed-inStringJsonNodeObjectMapper. readTree(URL source)Same asObjectMapper.readTree(InputStream)except content read from passed-inURL.JsonNodeObjectReader. readTree(byte[] json)Same asObjectReader.readTree(InputStream)except content read from passed-in byte array.JsonNodeObjectReader. readTree(byte[] json, int offset, int len)Same asObjectReader.readTree(InputStream)except content read from passed-in byte array.JsonNodeObjectReader. readTree(DataInput src)Same asObjectReader.readTree(InputStream)except content read using passed-inDataInput.JsonNodeObjectReader. readTree(InputStream src)Method that reads content from given input source, using configuration of this reader, and binds it as JSON Tree.JsonNodeObjectReader. readTree(Reader src)Same asObjectReader.readTree(InputStream)except content accessed through passed-inReaderJsonNodeObjectReader. readTree(String json)Same asObjectReader.readTree(InputStream)except content read from passed-inStringJsonNodeJsonNode. 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).JsonNodeJsonNode. required(String fieldName)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).JsonNodeJsonNode. requiredAt(com.fasterxml.jackson.core.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).JsonNodeJsonNode. 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 JsonNode Modifier and Type Method Description Iterator<JsonNode>JsonNode. elements()Method for accessing all value nodes of this Node, iff this node is a JSON Array or Object node.Iterator<Map.Entry<String,JsonNode>>JsonNode. fields()List<JsonNode>JsonNode. findParents(String fieldName)Method for finding a JSON Object that contains specified field, within this node or its descendants.abstract List<JsonNode>JsonNode. findParents(String fieldName, List<JsonNode> foundSoFar)List<JsonNode>JsonNode. findValues(String fieldName)Method for finding JSON Object fields with specified name, and returning found ones as a List.abstract List<JsonNode>JsonNode. findValues(String fieldName, List<JsonNode> foundSoFar)Iterator<JsonNode>JsonNode. iterator()Same as callingelements(); implemented so that convenience "for-each" loop can be used for looping over elements of JSON Array constructs.Methods in com.fasterxml.jackson.databind with parameters of type JsonNode Modifier and Type Method Description booleanJsonNode. equals(Comparator<JsonNode> comparator, JsonNode other)Entry method for invoking customizable comparison, using passed-inComparatorobject.<T> TObjectReader. readValue(JsonNode src)Convenience method for converting results from given JSON tree into given value type.voidObjectMapper. writeTree(com.fasterxml.jackson.core.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 JsonNode Modifier and Type Method Description booleanJsonNode. equals(Comparator<JsonNode> comparator, JsonNode other)Entry method for invoking customizable comparison, using passed-inComparatorobject.abstract List<JsonNode>JsonNode. findParents(String fieldName, List<JsonNode> foundSoFar)abstract List<JsonNode>JsonNode. findValues(String fieldName, List<JsonNode> foundSoFar) -
Uses of JsonNode in com.fasterxml.jackson.databind.deser
Method parameters in com.fasterxml.jackson.databind.deser with type arguments of type JsonNode Modifier and Type Method Description protected JsonDeserializer<?>BasicDeserializerFactory. _findCustomTreeNodeDeserializer(Class<? extends JsonNode> type, DeserializationConfig config, BeanDescription beanDesc)JsonDeserializer<?>Deserializers.Base. findTreeNodeDeserializer(Class<? extends JsonNode> nodeType, DeserializationConfig config, BeanDescription beanDesc)JsonDeserializer<?>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 JsonNode Modifier and Type Method Description JsonNodeJsonNodeDeserializer. deserialize(com.fasterxml.jackson.core.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).JsonNodeJsonNodeDeserializer. getNullValue(DeserializationContext ctxt)Methods in com.fasterxml.jackson.databind.deser.std that return types with arguments of type JsonNode Modifier and Type Method Description static 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 JsonNode Modifier and Type Method Description abstract TStdNodeBasedDeserializer. convert(JsonNode root, DeserializationContext ctxt) -
Uses of JsonNode in com.fasterxml.jackson.databind.ext
Methods in com.fasterxml.jackson.databind.ext that return JsonNode Modifier and Type Method Description JsonNodeDOMSerializer. getSchema(SerializerProvider provider, Type typeHint) -
Uses of JsonNode in com.fasterxml.jackson.databind.jsonschema
Methods in com.fasterxml.jackson.databind.jsonschema that return JsonNode Modifier and Type Method Description static JsonNodeJsonSchema. getDefaultSchemaNode()Deprecated.Get the default schema node.JsonNodeSchemaAware. getSchema(SerializerProvider provider, Type typeHint)Get the representation of the schema to which this serializer will conform.JsonNodeSchemaAware. getSchema(SerializerProvider provider, Type typeHint, boolean isOptional)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 JsonNode Modifier and Type Method Description JsonDeserializer<?>SimpleDeserializers. 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.node Modifier and Type Class Description classArrayNodeNode class that represents Arrays mapped from JSON content.classBaseJsonNodeAbstract base class common to all standardJsonNodeimplementations.classBigIntegerNodeNumeric node that contains simple 64-bit integer values.classBinaryNodeValue node that contains Base64 encoded binary value, which will be output and stored as Json String value.classBooleanNodeThis 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.classDecimalNodeNumeric node that contains values that do not fit in simple integer (int, long) or floating point (double) values.classDoubleNodeNumeric node that contains 64-bit ("double precision") floating point values simple 32-bit integer values.classFloatNodeJsonNodeimplementation for efficiently containing 32-bit `float` values.classIntNodeNumeric node that contains simple 32-bit integer values.classLongNodeNumeric node that contains simple 64-bit integer values.classMissingNodeThis singleton node class is generated to denote "missing nodes" along paths that do not exist.classNullNodeThis singleton value class is used to contain explicit JSON null value.classNumericNodeIntermediate value node used for numeric nodes.classObjectNodeNode that maps to JSON Object structures in JSON content.classPOJONodeValue node that contains a wrapped POJO, to be serialized as a JSON constructed through data mapping (usually done by callingObjectMapper).classShortNodeNumeric node that contains simple 16-bit integer values.classTextNodeValue node that contains a text value.classValueNodeThis 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 JsonNode Modifier and Type Field Description protected Map<String,JsonNode>ObjectNode. _childrenMethods in com.fasterxml.jackson.databind.node with type parameters of type JsonNode Modifier and Type Method Description <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>
TObjectNode. set(String fieldName, JsonNode value)Method that will set specified field, 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>
TObjectNode. setAll(Map<String,? extends JsonNode> properties)Method for adding given properties to this object node, overriding any existing values for those properties.<T extends JsonNode>
TObjectNode. without(String fieldName)Method for removing field entry from this ObjectNode, and returning instance after removal.<T extends JsonNode>
TObjectNode. without(Collection<String> fieldNames)Method for removing specified field properties out of this ObjectNode.Methods in com.fasterxml.jackson.databind.node that return JsonNode Modifier and Type Method Description protected JsonNodeArrayNode. _at(com.fasterxml.jackson.core.JsonPointer ptr)protected JsonNodeObjectNode. _at(com.fasterxml.jackson.core.JsonPointer ptr)protected JsonNodeValueNode. _at(com.fasterxml.jackson.core.JsonPointer ptr)protected JsonNodeTreeTraversingParser. currentNode()protected JsonNodeTreeTraversingParser. currentNumericNode()JsonNodeBaseJsonNode. findPath(String fieldName)JsonNodeArrayNode. findValue(String fieldName)JsonNodeObjectNode. findValue(String fieldName)JsonNodeValueNode. findValue(String fieldName)JsonNodeArrayNode. get(int index)JsonNodeArrayNode. get(String fieldName)abstract JsonNodeContainerNode. get(int index)abstract JsonNodeContainerNode. get(String fieldName)JsonNodeObjectNode. get(int index)JsonNodeObjectNode. get(String fieldName)JsonNodeValueNode. get(int index)JsonNodeValueNode. get(String fieldName)JsonNodeContainerNode. missingNode()JsonNodeJsonNodeFactory. missingNode()JsonNodeArrayNode. path(int index)JsonNodeArrayNode. path(String fieldName)JsonNodeObjectNode. path(int index)JsonNodeObjectNode. path(String fieldName)JsonNodeValueNode. path(int index)JsonNodeValueNode. path(String fieldName)JsonNodeObjectNode. put(String fieldName, JsonNode value)Deprecated.Since 2.4 use eitherObjectNode.set(String,JsonNode)orObjectNode.replace(String,JsonNode),JsonNodeObjectNode. putAll(ObjectNode other)Deprecated.Since 2.4 useObjectNode.setAll(ObjectNode),JsonNodeObjectNode. putAll(Map<String,? extends JsonNode> properties)Deprecated.Since 2.4 useObjectNode.setAll(Map),JsonNodeArrayNode. remove(int index)Method for removing an entry from this ArrayNode.JsonNodeObjectNode. remove(String fieldName)Method for removing field entry from this ObjectNode.JsonNodeObjectNode. replace(String fieldName, JsonNode value)Method for replacing value of specific property with passed value, and returning value (or null if none).JsonNodeMissingNode. require()JsonNodeArrayNode. required(int index)JsonNodeBaseJsonNode. required(int index)JsonNodeBaseJsonNode. required(String fieldName)JsonNodeObjectNode. required(String fieldName)JsonNodeMissingNode. requireNonNull()JsonNodeNullNode. requireNonNull()JsonNodeArrayNode. set(int index, JsonNode value)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 JsonNode Modifier and Type Method Description Iterator<JsonNode>ArrayNode. elements()Iterator<JsonNode>ObjectNode. elements()Iterator<Map.Entry<String,JsonNode>>ObjectNode. fields()Method to use for accessing all fields (with both names and values) of this JSON Object.List<JsonNode>ArrayNode. findParents(String fieldName, List<JsonNode> foundSoFar)List<JsonNode>ObjectNode. findParents(String fieldName, List<JsonNode> foundSoFar)List<JsonNode>ValueNode. findParents(String fieldName, List<JsonNode> foundSoFar)List<JsonNode>ArrayNode. findValues(String fieldName, List<JsonNode> foundSoFar)List<JsonNode>ObjectNode. findValues(String fieldName, List<JsonNode> foundSoFar)List<JsonNode>ValueNode. findValues(String fieldName, List<JsonNode> foundSoFar)Methods in com.fasterxml.jackson.databind.node with parameters of type JsonNode Modifier and Type Method Description protected ArrayNodeArrayNode. _add(JsonNode node)protected ArrayNodeArrayNode. _insert(int index, JsonNode node)protected ObjectNodeObjectNode. _put(String fieldName, JsonNode value)ArrayNodeArrayNode. add(JsonNode value)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)ArrayNodeArrayNode. insert(int index, JsonNode value)Method for inserting specified child node as an element of this Array.JsonNodeObjectNode. put(String fieldName, JsonNode value)Deprecated.Since 2.4 use eitherObjectNode.set(String,JsonNode)orObjectNode.replace(String,JsonNode),JsonNodeObjectNode. replace(String fieldName, JsonNode value)Method for replacing value of specific property with passed value, and returning value (or null if none).JsonNodeArrayNode. set(int index, JsonNode value)Method that will set specified field, replacing old value, if any.<T extends JsonNode>
TObjectNode. set(String fieldName, JsonNode value)Method that will set specified field, replacing old value, if any.Method parameters in com.fasterxml.jackson.databind.node with type arguments of type JsonNode Modifier and Type Method Description ArrayNodeArrayNode. 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)List<JsonNode>ArrayNode. findParents(String fieldName, List<JsonNode> foundSoFar)List<JsonNode>ObjectNode. findParents(String fieldName, List<JsonNode> foundSoFar)List<JsonNode>ValueNode. findParents(String fieldName, List<JsonNode> foundSoFar)List<JsonNode>ArrayNode. findValues(String fieldName, List<JsonNode> foundSoFar)List<JsonNode>ObjectNode. findValues(String fieldName, List<JsonNode> foundSoFar)List<JsonNode>ValueNode. findValues(String fieldName, List<JsonNode> foundSoFar)JsonNodeObjectNode. putAll(Map<String,? extends JsonNode> properties)Deprecated.Since 2.4 useObjectNode.setAll(Map),<T extends JsonNode>
TObjectNode. setAll(Map<String,? extends JsonNode> properties)Method 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 JsonNode Constructor Description TreeTraversingParser(JsonNode n)TreeTraversingParser(JsonNode n, com.fasterxml.jackson.core.ObjectCodec codec)Constructor parameters in com.fasterxml.jackson.databind.node with type arguments of type JsonNode Constructor Description ArrayNode(JsonNodeFactory nf, List<JsonNode> children)ObjectNode(JsonNodeFactory nc, Map<String,JsonNode> kids) -
Uses of JsonNode in com.fasterxml.jackson.databind.ser
Methods in com.fasterxml.jackson.databind.ser with parameters of type JsonNode Modifier and Type Method Description protected 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 JsonNode Modifier and Type Method Description protected JsonNodeIndexedStringListSerializer. contentSchema()protected JsonNodeStringCollectionSerializer. contentSchema()JsonNodeFailingSerializer. getSchema(SerializerProvider provider, Type typeHint)JsonNodeStringArraySerializer. getSchema(SerializerProvider provider, Type typeHint)JsonNodeUnknownSerializer. getSchema(SerializerProvider provider, Type typeHint)Methods in com.fasterxml.jackson.databind.ser.impl with parameters of type JsonNode Modifier and Type Method Description protected 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 JsonNode Modifier and Type Method Description protected abstract JsonNodeStaticListSerializerBase. contentSchema()JsonNodeAsArraySerializerBase. getSchema(SerializerProvider provider, Type typeHint)JsonNodeBeanSerializerBase. getSchema(SerializerProvider provider, Type typeHint)Deprecated.JsonNodeBooleanSerializer. getSchema(SerializerProvider provider, Type typeHint)JsonNodeByteArraySerializer. getSchema(SerializerProvider provider, Type typeHint)JsonNodeClassSerializer. getSchema(SerializerProvider provider, Type typeHint)JsonNodeDateTimeSerializerBase. getSchema(SerializerProvider serializers, Type typeHint)JsonNodeEnumSerializer. getSchema(SerializerProvider provider, Type typeHint)JsonNodeFileSerializer. getSchema(SerializerProvider provider, Type typeHint)JsonNodeJsonValueSerializer. getSchema(SerializerProvider provider, Type typeHint)JsonNodeMapSerializer. getSchema(SerializerProvider provider, Type typeHint)JsonNodeNullSerializer. getSchema(SerializerProvider provider, Type typeHint)JsonNodeNumberSerializer. getSchema(SerializerProvider provider, Type typeHint)JsonNodeNumberSerializers.Base. getSchema(SerializerProvider provider, Type typeHint)JsonNodeRawSerializer. getSchema(SerializerProvider provider, Type typeHint)JsonNodeSqlTimeSerializer. getSchema(SerializerProvider provider, Type typeHint)JsonNodeStaticListSerializerBase. getSchema(SerializerProvider provider, Type typeHint)JsonNodeStdArraySerializers.BooleanArraySerializer. getSchema(SerializerProvider provider, Type typeHint)JsonNodeStdArraySerializers.CharArraySerializer. getSchema(SerializerProvider provider, Type typeHint)JsonNodeStdArraySerializers.DoubleArraySerializer. getSchema(SerializerProvider provider, Type typeHint)JsonNodeStdArraySerializers.FloatArraySerializer. getSchema(SerializerProvider provider, Type typeHint)JsonNodeStdArraySerializers.IntArraySerializer. getSchema(SerializerProvider provider, Type typeHint)JsonNodeStdArraySerializers.LongArraySerializer. getSchema(SerializerProvider provider, Type typeHint)JsonNodeStdArraySerializers.ShortArraySerializer. getSchema(SerializerProvider provider, Type typeHint)JsonNodeStdDelegatingSerializer. getSchema(SerializerProvider provider, Type typeHint)JsonNodeStdDelegatingSerializer. getSchema(SerializerProvider provider, Type typeHint, boolean isOptional)JsonNodeStdJdkSerializers.AtomicBooleanSerializer. getSchema(SerializerProvider provider, Type typeHint)JsonNodeStdJdkSerializers.AtomicIntegerSerializer. getSchema(SerializerProvider provider, Type typeHint)JsonNodeStdJdkSerializers.AtomicLongSerializer. getSchema(SerializerProvider provider, Type typeHint)JsonNodeStdScalarSerializer. getSchema(SerializerProvider provider, Type typeHint)JsonNodeStdSerializer. getSchema(SerializerProvider provider, Type typeHint)Default implementation simply claims type is "string"; usually overriden by custom serializers.JsonNodeStdSerializer. getSchema(SerializerProvider provider, Type typeHint, boolean isOptional)Default implementation simply claims type is "string"; usually overriden by custom serializers.JsonNodeStringSerializer. getSchema(SerializerProvider provider, Type typeHint)JsonNodeTokenBufferSerializer. getSchema(SerializerProvider provider, Type typeHint)JsonNodeToStringSerializerBase. getSchema(SerializerProvider provider, Type typeHint)
-