Uses of Class
com.fasterxml.jackson.databind.deser.DataFormatReaders.Match
-
Packages that use DataFormatReaders.Match Package Description com.fasterxml.jackson.databind 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.com.fasterxml.jackson.databind.deser 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.Match Modifier and Type Method Description protected java.lang.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.Match Modifier and Type Method Description DataFormatReaders.Match
DataFormatReaders.AccessorForReader. createMatcher(ObjectReader match, com.fasterxml.jackson.core.format.MatchStrength matchStrength)
DataFormatReaders.Match
DataFormatReaders. findFormat(byte[] fullInputData)
Method to call to find format that given content (full document) has, as per configuration of this detector instance.DataFormatReaders.Match
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.Match
DataFormatReaders. findFormat(java.io.InputStream in)
Method to call to find format that content (accessible via givenInputStream
) given has, as per configuration of this detector instance.
-