Module tools.jackson.databind
Package tools.jackson.databind.util
package tools.jackson.databind.util
Utility classes for Mapper package.
-
ClassDescriptionEnumeration used to indicate required access pattern for providers: this can sometimes be used to optimize out dynamic calls.Interface that defines interface for accessing contents of a collection of annotations.Helper class that contains set of distinct builders for different arrays of primitive values.Iterator implementation used to efficiently expose contents of an Array as read-only iterator.Helper class that contains functionality needed by both serialization and deserialization side.Simple
InputStream
implementation that exposes currently available content of aByteBuffer
.SimpleOutputStream
implementation that appends content written in givenByteBuffer
instance.Value class used for containing information about discovered ConstructorsConverter<IN,OUT> Helper interface for things that convert Objects of one type to another.This marker class is only to be used with annotations, to indicate that no converter is to be used.Helper class used to resolve String values (either JSON Object field names or regular String values) into Java Enum instances.Helper class used for storing String serializations ofEnum
s, to match to/from external representations.Utility methods for dealing with exceptions/throwablesExtension overNamed
to expose full name; most relevant for formats like XML that use namespacing.Helper class to encapsulate logic from staticshouldIgnore
method of util class.Utility class that provides customCollector
implementations to support Stream operations.Container class that can be used to wrap any Object instances (including nulls), and will serialize embedded in JSONP wrapping.General-purpose wrapper class that can be used to decorate serialized value with arbitrary literal prefix and suffix.LinkedNode<T>Node of a forward-only linked list.LookupCache<K,V> An interface describing the required API for the Jackson-Databind Type cache.Helper class used to encapsulate details of name mangling, transforming of names using different strategies (prefixes, suffixes).Container for standard naming strategy implementations, specifically used by property naming strategies (seePropertyNamingStrategies
) and enum naming strategies (seeEnumNamingStrategies
).Utilities for graal native image support; mostly to improve error message handling in case of missing information for native image.Helper class to use for constructing Object arrays by appending entries to create arrays of various lengths (length that is not known a priori).Base class for specialized primitive array builders.Helper class used to encapsulate "raw values", pre-encoded textual content that can be output as opaque value with no quoting/escaping, usingJsonGenerator.writeRawValue(String)
.Helper class for finding so-called canonical constructor of Record types.Helper class for caching resolved root names.Simple immutableBeanPropertyDefinition
implementation that can be wrapped around aAnnotatedMember
that is a simple accessor (getter) or mutator (setter, constructor parameter) (or both, for fields).SimpleLookupCache<K,V> Synchronized cache with bounded size: used for reusing lookup values and lazily instantiated reusable items.StdConverter<IN,OUT> Standard implementation ofConverter
that supports explicit type access, instead of relying type detection of generic type parameters.Jackson's internalDateFormat
implementation used by standard Date serializers and deserializers to implement default behavior: does NOT fully implement all aspects expected byDateFormat
and as a consequence SHOULD NOT to be used by code outside core Jackson databind functionality.Utility class used for efficient storage ofJsonToken
sequences, needed for temporary buffering.Individual segment of TokenBuffer that can store up to 16 tokens (limited by 4 bits per token type marker requirement).Implementation ofTokenStreamContext
used byTokenBuffer
to link back to the original context to try to keep location information consistent between source location and buffered content when it's re-read from the buffer.Key that offers two "modes"; one with raw class, as used for cases were raw class type is available (for example, when using runtime type); and one with full generics-including.Simple identity value class that may be used as Serializable key for entries that need to retain identity of some kind, but where actual appearance of id itself does not matter.Helper class used for checking whether a property is visible in the active view