Uses of Class
com.fasterxml.jackson.databind.deser.DataFormatReaders.Match

Packages that use DataFormatReaders.Match
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. 
 

Uses of DataFormatReaders.Match in com.fasterxml.jackson.databind
 

Methods in com.fasterxml.jackson.databind with parameters of type DataFormatReaders.Match
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
 

Uses of DataFormatReaders.Match in com.fasterxml.jackson.databind.deser
 

Methods in com.fasterxml.jackson.databind.deser that return DataFormatReaders.Match
 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 FasterXML. All Rights Reserved.