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 | Field and Description |
---|---|
protected DataFormatReaders |
ObjectReader._dataFormatReaders
Optional detector used for auto-detecting data format that byte-based
input uses.
|
Modifier and Type | Method and Description |
---|---|
protected ObjectReader |
ObjectReader._new(ObjectReader base,
DeserializationConfig config,
JavaType valueType,
JsonDeserializer<Object> rootDeser,
Object valueToUpdate,
com.fasterxml.jackson.core.FormatSchema schema,
InjectableValues injectableValues,
DataFormatReaders dataFormatReaders)
Overridable factory method called by various "withXxx()" methods
|
protected void |
ObjectReader._reportUnkownFormat(DataFormatReaders detector,
DataFormatReaders.Match match)
Method called to indicate that format detection failed to detect format
of given input
|
ObjectReader |
ObjectReader.withFormatDetection(DataFormatReaders readers)
Fluent factory method for constructing a reader that will try to
auto-detect underlying data format, using specified
DataFormatReaders . |
Constructor and Description |
---|
ObjectReader(ObjectReader base,
DeserializationConfig config,
JavaType valueType,
JsonDeserializer<Object> rootDeser,
Object valueToUpdate,
com.fasterxml.jackson.core.FormatSchema schema,
InjectableValues injectableValues,
DataFormatReaders dataFormatReaders)
Copy constructor used for building variations.
|
Modifier and Type | Method and Description |
---|---|
DataFormatReaders |
DataFormatReaders.with(DeserializationConfig config) |
DataFormatReaders |
DataFormatReaders.with(ObjectReader[] readers) |
DataFormatReaders |
DataFormatReaders.withMaxInputLookahead(int lookaheadBytes) |
DataFormatReaders |
DataFormatReaders.withMinimalMatch(com.fasterxml.jackson.core.format.MatchStrength minMatch) |
DataFormatReaders |
DataFormatReaders.withOptimalMatch(com.fasterxml.jackson.core.format.MatchStrength optMatch) |
DataFormatReaders |
DataFormatReaders.withType(JavaType type) |
Copyright © 2014–2015 FasterXML. All rights reserved.