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.
|
Modifier and Type | Method | Description |
---|---|---|
protected 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
|
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(InputStream in) |
Method to call to find format that content (accessible via given
InputStream ) given has, as per configuration of this detector
instance. |
Copyright © 2008–2018. All rights reserved.