Uses of Package
com.fasterxml.jackson.core.util
-
Packages that use com.fasterxml.jackson.core.util Package Description com.fasterxml.jackson.core Main public API classes of the core streaming JSON processor: most importantlyJsonFactory
used for constructing JSON parser (JsonParser
) and generator (JsonGenerator
) instances.com.fasterxml.jackson.core.base Base classes used by concrete Parser and Generator implementations; contain functionality that is not specific to JSON or input abstraction (byte vs char).com.fasterxml.jackson.core.exc Package for some ofJsonProcessingException
subtypes contained by streaming API.com.fasterxml.jackson.core.filter com.fasterxml.jackson.core.io com.fasterxml.jackson.core.util Utility classes used by Jackson Core functionality. -
Classes in com.fasterxml.jackson.core.util used by com.fasterxml.jackson.core Class Description BufferRecycler This is a small utility class, whose main functionality is to allow simple reuse of raw byte/char buffers.ByteArrayBuilder Helper class that is similar toByteArrayOutputStream
in usage, but more geared to Jackson use cases internally.RequestPayload Container object used to contain optional information on content being parsed, passed toJsonParseException
in case of exception being thrown; this may be useful for caller to display information on failure.Separators Value class used with somePrettyPrinter
implements -
Classes in com.fasterxml.jackson.core.util used by com.fasterxml.jackson.core.base Class Description ByteArrayBuilder Helper class that is similar toByteArrayOutputStream
in usage, but more geared to Jackson use cases internally.TextBuffer TextBuffer is a class similar toStringBuffer
, with following differences: TextBuffer uses segments character arrays, to avoid having to do additional array copies when array is not big enough. -
Classes in com.fasterxml.jackson.core.util used by com.fasterxml.jackson.core.exc Class Description RequestPayload Container object used to contain optional information on content being parsed, passed toJsonParseException
in case of exception being thrown; this may be useful for caller to display information on failure. -
Classes in com.fasterxml.jackson.core.util used by com.fasterxml.jackson.core.filter Class Description JsonGeneratorDelegate JsonParserDelegate Helper class that implements delegation pattern forJsonParser
, to allow for simple overridability of basic parsing functionality. -
Classes in com.fasterxml.jackson.core.util used by com.fasterxml.jackson.core.io Class Description BufferRecycler This is a small utility class, whose main functionality is to allow simple reuse of raw byte/char buffers.TextBuffer TextBuffer is a class similar toStringBuffer
, with following differences: TextBuffer uses segments character arrays, to avoid having to do additional array copies when array is not big enough. -
Classes in com.fasterxml.jackson.core.util used by com.fasterxml.jackson.core.util Class Description BufferRecycler This is a small utility class, whose main functionality is to allow simple reuse of raw byte/char buffers.ByteArrayBuilder Helper class that is similar toByteArrayOutputStream
in usage, but more geared to Jackson use cases internally.DefaultIndenter Default linefeed-based indenter, used byDefaultPrettyPrinter
(unless overridden).DefaultPrettyPrinter DefaultPrettyPrinter
implementation that uses 2-space indentation with platform-default linefeeds.DefaultPrettyPrinter.FixedSpaceIndenter This is a very simple indenter that only adds a single space for indentation.DefaultPrettyPrinter.Indenter Interface that defines objects that can produce indentation used to separate object entries and array values.DefaultPrettyPrinter.NopIndenter Dummy implementation that adds no indentation whatsoeverInstantiatable Add-on interface used to indicate things that may be "blueprint" objects which can not be used as is, but are used for creating usable per-process (serialization, deserialization) instances, usingInstantiatable.createInstance()
method.InternCache Singleton class that adds a simple first-level cache in front of regular String.intern() functionality.JsonParserDelegate Helper class that implements delegation pattern forJsonParser
, to allow for simple overridability of basic parsing functionality.JsonParserSequence Helper class that can be used to sequence multiple physicalJsonParser
s to create a single logical sequence of tokens, as a singleJsonParser
.MinimalPrettyPrinter PrettyPrinter
implementation that adds no indentation, just implements everything necessary for value output to work as expected, and provide simpler extension points to allow for creating simple custom implementations that add specific decoration or overrides.Separators Value class used with somePrettyPrinter
implementsTextBuffer TextBuffer is a class similar toStringBuffer
, with following differences: TextBuffer uses segments character arrays, to avoid having to do additional array copies when array is not big enough.