All Classes Interface Summary Class Summary Enum Summary Annotation Types Summary
Class |
Description |
AnnotationUtil |
|
CaseInsensitiveNameSet |
Helper class for matching element wrappers, possibly in case-insensitive
manner.
|
DefaultingXmlTypeResolverBuilder |
Sub-class of StdTypeResolverBuilder specifically used with
Default Typing.
|
DefaultXmlPrettyPrinter |
Indentation to use with XML is different from JSON, because JSON
requires use of separator characters and XML just basic whitespace.
|
DefaultXmlPrettyPrinter.FixedSpaceIndenter |
This is a very simple indenter that only every adds a
single space for indentation.
|
DefaultXmlPrettyPrinter.Indenter |
Interface that defines objects that can produce indentation used
to separate object entries and array values.
|
DefaultXmlPrettyPrinter.NopIndenter |
Dummy implementation that adds no indentation whatsoever
|
ElementWrappable |
Minimal API to be implemented by XML-backed parsers for which "virtual"
wrapping may be imposed.
|
ElementWrapper |
Helper class needed to keep track of virtual wrapper elements
added in the logical XML token stream.
|
FromXmlParser |
JsonParser implementation that exposes XML structure as
set of JSON events that can be used for data binding.
|
FromXmlParser.Feature |
Enumeration that defines all togglable features for XML parsers.
|
JacksonXmlAnnotationIntrospector |
Extension of JacksonAnnotationIntrospector that is needed to support
additional xml-specific annotation that Jackson provides.
|
JacksonXmlCData |
Adding this annotation will result in value of the property to be serialized
within an xml CDATA section.
|
JacksonXmlElementWrapper |
Annotation that is similar to JAXB jakarta.xml.bind.annotation.XmlElementWrapper ,
to indicate wrapper element to use (if any) for Collection types (arrays,
Collection ).
|
JacksonXmlModule |
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.
|
JacksonXmlProperty |
Annotation that can be used to provide XML-specific configuration
for properties, above and beyond what
JsonProperty contains.
|
JacksonXmlRootElement |
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).
|
JacksonXmlText |
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.
|
PackageVersion |
Automatically generated from PackageVersion.java.in during
packageVersion-generate execution of maven-replacer-plugin in
pom.xml.
|
Stax2JacksonReaderAdapter |
Refinement of Stax2ReaderAdapter to override certain methods,
to patch over flaws of JDK-provided default Stax implementation, SJSXP
|
StaxUtil |
|
StaxUtil.Base64Mapper |
|
ToXmlGenerator |
JsonGenerator that outputs JAXB-style XML output instead of JSON content.
|
ToXmlGenerator.Feature |
Enumeration that defines all togglable extra XML-specific features
|
TypeUtil |
|
UnwrappingXmlBeanSerializer |
|
WrapperHandlingDeserializer |
Delegating deserializer whose only function is to handle case of
"unwrapped" List/array deserialization from XML.
|
XmlAnnotationIntrospector |
Additional extension interface used above and beyond
AnnotationIntrospector to handle XML-specific configuration.
|
XmlAnnotationIntrospector.Pair |
Extension of AnnotationIntrospector.Pair that can
also dispatch 'XmlAnnotationIntrospector' methods.
|
XmlBeanDeserializerModifier |
The main reason for a modifier is to support handling of
'wrapped' Collection types.
|
XmlBeanPropertyWriter |
Property writer sub-class used for handling element wrapping needed for serializing
collection (array, Collection; possibly Map) types.
|
XmlBeanSerializer |
Variant of BeanSerializer for XML handling.
|
XmlBeanSerializerBase |
Specific sub-class of BeanSerializerBase needed to take care
of some xml-specific aspects, such as distinction between attributes
and elements.
|
XmlBeanSerializerModifier |
We need a BeanSerializerModifier to replace default BeanSerializer
with XML-specific one; mostly to ensure that attribute properties are output
before element properties.
|
XmlDeserializationContext |
XML-specific DeserializationContext needed to override certain
handlers.
|
XmlFactory |
|
XmlFactoryBuilder |
TSFBuilder implementation
for constructing XmlFactory instances.
|
XmlInfo |
Helper container class used to contain XML specific information
we need to retain to construct proper bean serializer
|
XmlJaxbAnnotationIntrospector |
Deprecated.
|
XmlMapper |
Customized ObjectMapper that will read and write XML instead of JSON,
using XML-backed JsonFactory
implementation ( XmlFactory ).
|
XmlMapper.Builder |
Builder implementation for constructing XmlMapper instances.
|
XmlNameProcessor |
API of processors primarily used for dealing with XML names
containing invalid characters.
|
XmlNameProcessor.XmlName |
Representation of an XML element or attribute name
|
XmlNameProcessors |
|
XmlNameProcessors.AlwaysOnBase64NameProcessor |
|
XmlNameProcessors.Base64NameProcessor |
|
XmlNameProcessors.PassthroughProcessor |
|
XmlNameProcessors.ReplaceNameProcessor |
|
XmlPrettyPrinter |
There are some XML-specific quirks that need extra TLC when
indenting: so we will use a refinement of general purpose one.
|
XmlReadContext |
Extension of JsonStreamContext , which implements
core methods needed, and adds small amount of additional
state data we need.
|
XmlRootNameLookup |
Helper class used for efficiently finding root element name used with
XML serializations.
|
XmlSerializerProvider |
We need to override some parts of
SerializerProvider
implementation to handle oddities of XML output, like "extra" root element.
|
XmlTextDeserializer |
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.
|
XmlTokenStream |
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.
|
XmlTypeResolverBuilder |
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.
|
XmlTypeResolverBuilder.XmlClassNameIdResolver |
|
XmlTypeResolverBuilder.XmlMinimalClassNameIdResolver |
|