All Classes and Interfaces
Class
Description
Helper class for matching element wrappers, possibly in case-insensitive
manner.
Sub-class of
StdTypeResolverBuilder
specifically used with
Default Typing.Indentation to use with XML is different from JSON, because JSON
requires use of separator characters and XML just basic whitespace.
This is a very simple indenter that only every adds a
single space for indentation.
Interface that defines objects that can produce indentation used
to separate object entries and array values.
Dummy implementation that adds no indentation whatsoever
Minimal API to be implemented by XML-backed parsers for which "virtual"
wrapping may be imposed.
Helper class needed to keep track of virtual wrapper elements
added in the logical XML token stream.
JsonParser
implementation that exposes XML structure as
set of JSON events that can be used for data binding.Enumeration that defines all togglable features for XML parsers.
Extension of
JacksonAnnotationIntrospector
that is needed to support
additional xml-specific annotation that Jackson provides.Adding this annotation will result in value of the property to be serialized
within an xml
CDATA
section.Annotation that is similar to JAXB
jakarta.xml.bind.annotation.XmlElementWrapper
,
to indicate wrapper element to use (if any) for Collection types (arrays,
Collection
).Module that implements most functionality needed to support producing and
consuming XML instead of JSON, used by
XmlMapper
for registering
handlers for XML-specific processing.Annotation that can be used to provide XML-specific configuration
for properties, above and beyond what
JsonProperty
contains.Annotation that can be used to define name of root element used
for the root-level object when serialized, which normally uses
name of the type (class).
Interface that is loosely similar to
jakarta.xml.bind.annotation.XmlValue
in that it can be used on one (and only one!) property of a POJO.Automatically generated from PackageVersion.java.in during
packageVersion-generate execution of maven-replacer-plugin in
pom.xml.
JsonGenerator
that outputs JAXB-style XML output instead of JSON content.Enumeration that defines all togglable extra XML-specific features
Copy of
UnwrappingBeanSerializer
required to extend
XmlBeanSerializerBase
for XML-specific handling.Delegating deserializer whose only function is to handle case of
"unwrapped" List/array deserialization from XML.
Additional extension interface used above and beyond
AnnotationIntrospector
to handle XML-specific configuration.Extension of
AnnotationIntrospector.Pair
that can
also dispatch 'XmlAnnotationIntrospector' methods.The main reason for a modifier is to support handling of
'wrapped' Collection types.
Property writer sub-class used for handling element wrapping needed for serializing
collection (array, Collection; possibly Map) types.
Variant of
BeanSerializer
for XML handling.Specific sub-class of
BeanSerializerBase
needed to take care
of some xml-specific aspects, such as distinction between attributes
and elements.We need a
BeanSerializerModifier
to replace default BeanSerializer
with XML-specific one; mostly to ensure that attribute properties are output
before element properties.XML-specific
DeserializationContext
needed to override certain
handlers.Factory used for constructing
FromXmlParser
and ToXmlGenerator
instances.TSFBuilder
implementation
for constructing XmlFactory
instances.Helper container class used to contain XML specific information
we need to retain to construct proper bean serializer
Deprecated.
Since 2.12 (as per above notes): broken since 2.13
Customized
ObjectMapper
that will read and write XML instead of JSON,
using XML-backed JsonFactory
implementation (XmlFactory
).Builder implementation for constructing
XmlMapper
instances.API of processors primarily used for dealing with XML names
containing invalid characters.
Representation of an XML element or attribute name
Contains default
XmlNameProcessor
implementations.There are some XML-specific quirks that need extra TLC when
indenting: so we will use a refinement of general purpose one.
Extension of
JsonStreamContext
, which implements
core methods needed, and adds small amount of additional
state data we need.Helper class used for efficiently finding root element name used with
XML serializations.
We need to override some parts of
SerializerProvider
implementation to handle oddities of XML output, like "extra" root element.Delegating deserializer that is used in the special cases where
we may sometimes see a "plain" String value but need to map it
as if it was a property of POJO.
Simple helper class used on top of STAX
XMLStreamReader
to further
abstract out all irrelevant details, and to expose equivalent of flat token
stream with no "fluff" tokens (comments, processing instructions, mixed
content) all of which is just to simplify
actual higher-level conversion to JSON tokens.Custom specialization of
StdTypeResolverBuilder
; needed so that
type id property name can be modified as necessary to make it legal
XML element or attribute name.