| Package | Description | 
|---|---|
| com.fasterxml.jackson.databind | 
 Contains basic mapper (conversion) functionality that
allows for converting between regular streaming json content and
Java objects (beans or Tree Model: support for both is via
 
ObjectMapper class, as well
as convenience methods included in
JsonParser | 
| com.fasterxml.jackson.databind.deser | 
 Contains implementation classes of deserialization part of 
 data binding. 
 | 
| Modifier and Type | Method and 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 and Description | 
|---|---|
DataFormatReaders.Match | 
DataFormatReaders.AccessorForReader.createMatcher(ObjectReader match,
             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 © 2012-2013 FasterXML. All Rights Reserved.