Uses of Class
com.fasterxml.jackson.databind.deser.DataFormatReaders.Match
Packages that use DataFormatReaders.Match
Package
Description
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.Contains implementation classes of deserialization part of
data binding.
-
Uses of DataFormatReaders.Match in com.fasterxml.jackson.databind
Methods in com.fasterxml.jackson.databind with parameters of type DataFormatReaders.MatchModifier and TypeMethodDescriptionprotected Object
ObjectReader._detectBindAndClose
(DataFormatReaders.Match match, boolean forceClosing) protected <T> MappingIterator
<T> ObjectReader._detectBindAndReadValues
(DataFormatReaders.Match match, boolean forceClosing) protected void
ObjectReader._reportUnkownFormat
(DataFormatReaders detector, DataFormatReaders.Match match) Method called to indicate that format detection failed to detect format of given input -
Uses of DataFormatReaders.Match in com.fasterxml.jackson.databind.deser
Methods in com.fasterxml.jackson.databind.deser that return DataFormatReaders.MatchModifier and TypeMethodDescriptionDataFormatReaders.AccessorForReader.createMatcher
(ObjectReader match, com.fasterxml.jackson.core.format.MatchStrength matchStrength) DataFormatReaders.findFormat
(byte[] fullInputData) Method to call to find format that given content (full document) has, as per configuration of this detector instance.DataFormatReaders.findFormat
(byte[] fullInputData, int offset, int len) Method to call to find format that given content (full document) has, as per configuration of this detector instance.DataFormatReaders.findFormat
(InputStream in) Method to call to find format that content (accessible via givenInputStream
) given has, as per configuration of this detector instance.